📖 Concept
One Claude per worktree
A git worktree is a second working directory tied to a different branch in the same repo. Spin one up per task and run a separate Claude in each — no branch-switching, no file conflicts, true parallelism.
git worktree add ../myapp-feature-x feature-x cd ../myapp-feature-x && claude
- ✓Independent file state per worktree
- ✓Share the same .git, history, and remotes
- ✓Remove with: git worktree remove <path>