Help us improve
Share bugs, ideas, or general feedback.
From sttts-worktree
Git worktree commands and usage. Triggers on 'worktree', 'worktrees', 'create worktree', 'git worktree'.
npx claudepluginhub sttts/skills --plugin sttts-worktreeHow this skill is triggered — by the user, by Claude, or both
Slash command
/sttts-worktree:worktreeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Git worktrees allow working on multiple branches simultaneously in separate directories.
Manages git worktrees for isolated parallel development sessions with safety checks for uncommitted changes and unpushed commits.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Git worktrees allow working on multiple branches simultaneously in separate directories.
# Create worktree with new branch
git worktree add <path> -b <new-branch>
# Create worktree for existing branch
git worktree add <path> <existing-branch>
git worktree list
# Remove worktree (directory must be clean)
git worktree remove <path>
# Force remove (even if dirty)
git worktree remove --force <path>
git worktree prune
git worktree add ../feature-123 -b feature-123
cd ../feature-123
# work on feature
git worktree add ../hotfix -b hotfix/urgent-fix origin/main
cd ../hotfix
# fix the issue
git push
cd -
git worktree remove ../hotfix
git worktree add ../review-pr-456 origin/feature-branch
cd ../review-pr-456
# review code
cd -
git worktree remove ../review-pr-456
.git objects - efficient disk usagegit worktree lock <path> to prevent accidental removal