git-worktree
Installation
SKILL.md
Git Worktree
Manage git worktrees for parallel, isolated development.
Create a worktree
git worktree add .worktrees/IDENTIFIER -b feature/IDENTIFIER main
Creates a new worktree at .worktrees/IDENTIFIER on branch feature/IDENTIFIER based off main.
List worktrees
git worktree list
Shows all active worktrees with their paths, HEAD commits, and branch names.