Commit ·
20ac718
1
Parent(s): 922310d
chore: gitignore .claude/ local agent state
Browse files.claude/ holds settings.local.json and a live git worktree (~1.4MB) whose
metadata embeds machine-local absolute paths. It was showing up as untracked
noise in every status; ignoring it is correct, committing it would not be.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
- .gitignore +4 -0
.gitignore
CHANGED
|
@@ -45,3 +45,7 @@ __pycache__/
|
|
| 45 |
.venv/
|
| 46 |
.DS_Store
|
| 47 |
.idea/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
.venv/
|
| 46 |
.DS_Store
|
| 47 |
.idea/
|
| 48 |
+
|
| 49 |
+
# Claude Code local state: settings.local.json plus a live git worktree.
|
| 50 |
+
# Never commit - it embeds machine-local absolute paths.
|
| 51 |
+
.claude/
|