Back to list
mvillmow

worktree-switch

by mvillmow

Training framework written in Mojo

11🍴 4📅 Jan 24, 2026

SKILL.md


name: worktree-switch description: "Switch between git worktrees for parallel development. Use when working on multiple issues simultaneously." mcp_fallback: none category: worktree

Worktree Switch

Navigate between isolated worktree directories quickly.

When to Use

  • Working on multiple issues
  • Need to context switch without stashing
  • Testing different branches side-by-side
  • Comparing implementations

Quick Reference

# List all worktrees
git worktree list

# Switch worktree (simple cd)
cd ../ProjectOdyssey-42-feature

# Verify current worktree
git worktree list | grep "*"

# Switch by issue number (script)
./scripts/switch_worktree.sh 42

Workflow

  1. List worktrees - See all available worktrees and their paths
  2. Navigate - cd to desired worktree directory
  3. Verify - Check git branch to confirm you're on right branch
  4. Work - Make changes, commit normally
  5. Switch - Move to different worktree with simple cd

Common Patterns

Terminal Aliases

# Add to ~/.bashrc or ~/.zshrc
alias wt='git worktree list'
alias wtcd='cd $(git worktree list | fzf | awk "{print \$1}")'

Tmux Sessions

# Create persistent session per worktree
tmux new -s issue-42 -c ../ProjectOdyssey-42-feature

# Switch sessions
tmux attach -t issue-42

# List sessions
tmux list-sessions

Best Practices

  • One worktree per issue (don't share branches)
  • Use clear naming: <issue-number>-<description>
  • Keep worktrees organized in parent directory
  • Use terminal multiplexer (tmux/screen) for persistent sessions
  • Clean up completed worktrees (see worktree-cleanup skill)

Limitations

  • Each branch can only be checked out in ONE worktree
  • Cannot be in worktree while removing it
  • All worktrees share the same .git directory (some operations affect all)

References

  • See worktree-create skill for creating worktrees
  • See worktree-cleanup skill for removing worktrees
  • worktree-strategy.md

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon