Create Git Worktree

VerifiedCaution

Creates git worktrees in a standardized location with proper DVC configuration. Enables working on multiple branches simultaneously.

Sby Skills Guide Bot
DevelopmentIntermediate
506/2/2026
Claude Code
#git#worktree#branching#dvc#environment

Recommended for

Our review

Creates Git worktrees in a standardized location with proper DVC configuration.

Strengths

  • Automates worktree creation with a consistent location
  • Handles copying of .env files and DVC configuration
  • Enables simultaneous work on multiple branches

Limitations

  • Requires DVC to be already set up in the repository for the DVC steps
  • Does not handle branches with major divergences
  • Copying .env may not be sufficient for complex environments
When to use it

Use this skill when you need to work on multiple Git branches in parallel and want a reproducible setup including DVC and environment variables.

When not to use it

Do not use it if you prefer to manage worktrees manually or if your project does not use DVC or a .env file.

Security analysis

Caution
Quality score85/100

The skill uses bash commands that are standard for git worktree creation, but the branch name, when inserted into commands, could be exploited for injection if not handled safely. Additionally, copying .env files could expose secrets if the worktree is not properly secured, though that is a user concern.

Findings
  • The skill instructs to use user-provided branch names in shell commands. If the AI substitutes the branch name directly without proper quoting or sanitization, it could lead to command injection (e.g., branch name containing '; malicious command'). The commands should always use variable expansion with quotes to mitigate this risk.

Examples

Create worktree for a feature branch
Create a git worktree for branch 'feature/new-api'
Create worktree for a new branch
Add a worktree for a new branch called 'hotfix/production-fix'
Set up worktree with DVC
Set up a git worktree for 'experiment/analysis' and configure DVC cache

name: worktree description: This skill should be used when the user asks to "create a worktree", "add a worktree", "set up a worktree", mentions "git worktree", or wants to work on multiple branches simultaneously. user-invocable: true

Create Git Worktree

This skill creates git worktrees in a standardized location with proper DVC configuration.

When to Use

Use this skill when the user:

  • Asks to create a new git worktree
  • Wants to work on multiple branches simultaneously
  • Mentions "git worktree add" or similar

Worktree Location

All worktrees are created under .worktrees/ in the repository root:

repo/
├── .worktrees/
│   ├── feature-branch-1/
│   └── feature-branch-2/
├── src/
└── ...

Instructions

1. Determine the Repository Root

Find the git repository root:

git rev-parse --show-toplevel

2. Create the Worktrees Directory

Ensure the .worktrees directory exists:

mkdir -p "$(git rev-parse --show-toplevel)/.worktrees"

3. Create the Worktree

Create the worktree with the specified branch:

REPO_ROOT="$(git rev-parse --show-toplevel)"
git worktree add "$REPO_ROOT/.worktrees/<branch-name>" <branch-name>

If creating a new branch:

git worktree add -b <new-branch-name> "$REPO_ROOT/.worktrees/<new-branch-name>"

4. Copy .env File

Copy .env from the project root to the worktree so environment variables are available:

REPO_ROOT="$(git rev-parse --show-toplevel)"
WORKTREE_PATH="$REPO_ROOT/.worktrees/<branch-name>"

# Copy .env if it exists
[ -f "$REPO_ROOT/.env" ] && cp "$REPO_ROOT/.env" "$WORKTREE_PATH/"

5. Handle DVC Configuration (if applicable)

Check if the repository uses DVC by looking for .dvc/ directory:

if [ -d "$(git rev-parse --show-toplevel)/.dvc" ]; then
    echo "DVC detected"
fi

If DVC is present and .dvc/config.local exists, copy and update it:

  1. Copy the local config:
REPO_ROOT="$(git rev-parse --show-toplevel)"
WORKTREE_PATH="$REPO_ROOT/.worktrees/<branch-name>"
cp "$REPO_ROOT/.dvc/config.local" "$WORKTREE_PATH/.dvc/config.local"
  1. Update the cache directory to point to the main repo's cache:
REPO_ROOT="$(git rev-parse --show-toplevel)"
WORKTREE_PATH="$REPO_ROOT/.worktrees/<branch-name>"
cat > "$WORKTREE_PATH/.dvc/config.local" << EOF
[cache]
    dir = $REPO_ROOT/.dvc/cache
EOF

Note: If the original .dvc/config.local contains other settings beyond cache configuration, preserve those settings and only update/add the cache dir setting.

Complete Example

Creating a worktree for branch feature/new-api:

REPO_ROOT="$(git rev-parse --show-toplevel)"
BRANCH_NAME="feature/new-api"
WORKTREE_DIR="$REPO_ROOT/.worktrees/$BRANCH_NAME"

mkdir -p "$REPO_ROOT/.worktrees"
git worktree add "$WORKTREE_DIR" "$BRANCH_NAME"

# Copy .env if it exists
[ -f "$REPO_ROOT/.env" ] && cp "$REPO_ROOT/.env" "$WORKTREE_DIR/"

if [ -f "$REPO_ROOT/.dvc/config.local" ]; then
    mkdir -p "$WORKTREE_DIR/.dvc"
    cat > "$WORKTREE_DIR/.dvc/config.local" << EOF
[cache]
    dir = $REPO_ROOT/.dvc/cache
EOF
fi

echo "Worktree created at: $WORKTREE_DIR"

Notes

  • Worktree names typically match branch names, with slashes replaced by the filesystem
  • The .worktrees/ directory should be added to .gitignore if not already
  • Use git worktree list to see all worktrees
  • Use git worktree remove <path> to remove a worktree
Related skills