Spaces:
Running
Running
GAIA Developer
Claude
commited on
Commit
·
95cb9ac
1
Parent(s):
3dfc782
🗂️ Add archive folder to .gitignore and organize unnecessary files
Browse files- Add archive/ folder to .gitignore to prevent tracking system files
- Archive folder now contains all system files, IDE configs, and logs
- Keeps working directory clean with only project-relevant files visible
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- .gitignore +4 -1
.gitignore
CHANGED
@@ -37,4 +37,7 @@ ENV/
|
|
37 |
.git_store/
|
38 |
|
39 |
# Additional Python cache
|
40 |
-
*/__pycache__/
|
|
|
|
|
|
|
|
37 |
.git_store/
|
38 |
|
39 |
# Additional Python cache
|
40 |
+
*/__pycache__/
|
41 |
+
|
42 |
+
# Archive folder
|
43 |
+
archive/
|