-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitignore
More file actions
36 lines (30 loc) · 791 Bytes
/
Copy pathgitignore
File metadata and controls
36 lines (30 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Global gitignore (core.excludesfile). Things that should never be committed
# from ANY repo — editor/OS cruft and local-only files. Project-specific
# ignores belong in that project's own .gitignore.
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Editors
*~
.*.swp
.*.swo
.idea/
.vscode/
*.sublime-workspace
# Legacy VCS
.svn
# Local tool state
CS_SESSION
**/.claude/settings.local.json
.direnv/
# Secrets — a backstop, not a substitute for per-project ignores. Committed
# credentials are the one mistake you cannot take back once pushed.
.env
.env.*
!.env.example
!.env.sample
# Deliberately NOT here: node_modules/. A global ignore is invisible to
# collaborators and silently hides files from `git status`; dependency
# directories belong in each project's own .gitignore.