Git Worktree Manager

Manage git worktrees for isolated branch development - create, list, switch, and clean up worktrees for parallel feature development, safe experimentation, and CI/CD isolation

chainlesschain e06f6f5 2 files · 6.8 KB Updated

File contents

Git Worktree Manager

Manage git worktrees for parallel branch development.

Usage

/git-worktree-manager create <branch> [--path <dir>]
/git-worktree-manager list
/git-worktree-manager remove <path>
/git-worktree-manager status
/git-worktree-manager prune

When to Use Worktrees

  • Work on a hotfix while keeping your feature branch state
  • Run tests on one branch while coding on another
  • Compare behavior across branches side-by-side
  • Isolated CI/CD task execution

Actions

Action Description
create Create a new worktree for a branch
list List all active worktrees
remove Remove a worktree and clean up
status Show git status across all worktrees
prune Clean up stale worktree references

chainlesschain/chainlesschain/tree/main/desktop-app-vue/src/main/ai-engine/cowork/skills/builtin/git-worktree-manager commit e06f6f5588

Frequently asked questions

npx skillmds@latest add chainlesschain/git-worktree-manager