Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ app.*.map.json
# AI coding tools
.ac/

# Worktrees Claude Code creates for parallel sessions and isolated subagents.
# Only this subdirectory: the rest of `.claude/` is tracked, because the rules
# under it are part of the repository.
#
# They sit inside the working tree rather than beside it. `git clean -xdf` leaves them
# alone: git's nested-repository guard resolves a gitfile too, so it reports "Skipping
# repository .claude/worktrees/<slug>" and the contents survive. `git clean -xdff` does
# not skip them, and wipes a live worktree while `.git/worktrees/<slug>` survives,
# leaving a registration that `git worktree prune` then has to clear.
.claude/worktrees/

# Package lock file
pubspec.lock

Expand Down