wt

star 3.4k

Create a git worktree in worktree/ subdirectory with up-to-date master

homeassistant-ai By homeassistant-ai schedule Updated 5/6/2026

name: wt description: Create a git worktree in worktree/ subdirectory with up-to-date master argument-hint: "" allowed-tools: Bash

Create Git Worktree

Create a new worktree in worktree/<branch-name> with branch <branch-name>.

Execution

# Return to repo root
cd "$(git rev-parse --show-toplevel)"

# Pull latest master
git checkout master
git pull origin master

# Create worktree
git worktree add worktree/"$ARGUMENTS" -b "$ARGUMENTS"

# Initialize submodules (skills-vendor)
git -C worktree/"$ARGUMENTS" submodule update --init --recursive

# Navigate to worktree
cd worktree/"$ARGUMENTS"

# Confirm location and branch
echo ""
echo "✅ Worktree created and ready:"
echo "   Location: $(pwd)"
echo "   Branch: $(git rev-parse --abbrev-ref HEAD)"
echo ""
echo "You can now work in this isolated environment."

Notes

  • Worktree inherits .claude/skills/ workflows
  • To remove when done: cd ../.. && git worktree remove worktree/"$ARGUMENTS"
  • List all worktrees: git worktree list
Install via CLI
npx skills add https://github.com/homeassistant-ai/ha-mcp --skill wt
Repository Details
star Stars 3,439
call_split Forks 137
navigation Branch main
article Path SKILL.md
Occupations
More from Creator
homeassistant-ai
homeassistant-ai Explore all skills →