From create-worktrees
Creates a git worktree for parallel development on a separate branch without stashing. Outputs the worktree path and branch name.
How this command is triggered — by the user, by Claude, or both
Slash command
/create-worktrees:worktree-createThe summary Claude sees in its command listing — used to decide when to auto-load this command
Create a git worktree for parallel development on a separate branch without stashing. ## Steps 1. Verify the current repository supports worktrees: 2. Determine the worktree configuration: 3. Create the worktree: 4. Set up the worktree environment: 5. List active worktrees with `git worktree list`. 6. Provide the path and instructions to switch to the new worktree. ## Format ## Rules - Always create worktrees outside the main repository directory. - Use descriptive branch names following project conventions. - Do not copy .env files with secrets to worktrees.
Create a git worktree for parallel development on a separate branch without stashing.
git worktree list.Worktree Created:
Path: <absolute path>
Branch: <branch name>
Base: <parent branch>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub samuelj90/awesome-claude-code-toolkit --plugin create-worktrees/worktree-createCreates a git worktree for parallel development on a separate branch without stashing. Outputs the worktree path and branch name.
/worktreeCreates and manages git worktrees for parallel development on multiple branches simultaneously, with automatic config copying and dependency installation.
/worktreeCreates an isolated git worktree in ../[repo]-[branch] for parallel development, copies .env* files, installs dependencies, and validates setup. Also supports --list and --clean.
/worktreeCreates an isolated git worktree in .worktrees/<name> based on main, current, or specified branch. Ensures .worktrees/ is git-ignored and lists all worktrees.
/worktree-startCreates a Git worktree for parallel development, automatically naming branches with type prefixes (feature/, fix/, refactor/) and detecting the project domain/framework. Also checks for Claude Code file conflicts.
/worktreeCreates or removes git worktrees for isolated parallel development. Handles env files, dependency syncing, and project setup.