Claude Code Plugins

Community-maintained marketplace

Feedback

git-worktree

@bdsqqq/dots
5
0

create a new git worktree with a branch and switch to it

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name git-worktree
description create git worktree with new branch

git-worktree

create a worktree as sibling directory with a new branch.

workflow

git worktree add ../<name> -b <name>
git worktree list

then: cd ../<name> or open in editor.

example

git worktree add ../feature-auth -b feature-auth