🎉 Smithery is now a part of Arcade.dev! Read more in our announcement here
Create and manage feature branches in a git worktree with consistent naming and PR workflow (squash merge).
feature/<slug>
../.worktrees/pluto/<branch_sanitized>
origin/main
-
../.worktrees/pluto
branch_sanitized
/
__
<slug>
git fetch origin
git worktree add <path> <branch>
git worktree add -b <branch> <path> origin/main
git rebase origin/main
git push -u origin HEAD
gh pr create
main
git status --porcelain
git worktree remove <path>
git worktree prune