Spaces:
Running
Running
GAIA Developer
Claude
commited on
Commit
·
3dfc782
1
Parent(s):
1a3088a
🔧 Update .gitignore to exclude system and IDE files
Browse files- Add VSCode server files exclusion
- Add Claude Code configuration exclusion
- Add system files (.bash_history, .config, .npm, etc.)
- Add additional Python cache pattern
- Prevents 1450+ system files from showing as untracked
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- .gitignore +17 -1
.gitignore
CHANGED
@@ -21,4 +21,20 @@ ENV/
|
|
21 |
.env.*.local
|
22 |
|
23 |
# Logs
|
24 |
-
*.log
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
.env.*.local
|
22 |
|
23 |
# Logs
|
24 |
+
*.log
|
25 |
+
|
26 |
+
# VSCode Server
|
27 |
+
.vscode-server-insiders/
|
28 |
+
|
29 |
+
# Claude Code
|
30 |
+
.claude/
|
31 |
+
.claude.json
|
32 |
+
|
33 |
+
# System files
|
34 |
+
.bash_history
|
35 |
+
.config/
|
36 |
+
.npm/
|
37 |
+
.git_store/
|
38 |
+
|
39 |
+
# Additional Python cache
|
40 |
+
*/__pycache__/
|