main
or develop
){repo-path}-{branch-name}
Example: /Users/you/project
→ /Users/you/project-feature-awesome
vt follow
command is smart:
feature/user-authentication
bugfix/memory-leak
fix/issue#123
(special characters)git worktree prune
to clean up referencesvt follow ~/project-feature1
to track first featurevt follow ~/project-feature2
for second feature-force
option if appropriategit worktree list
git config vibetunnel.followWorktree
ls -la .git/hooks/post-*
vt status
vt follow
- Enable follow mode for current branchvt follow <branch>
- Switch to branch and enable follow modevt unfollow
- Disable follow modevt git event
- Used internally by Git hooksgit worktree add <path> <branch>
- Create a new worktreegit worktree list
- List all worktreesgit worktree remove <path>
- Remove a worktreeGET /api/worktrees
- List worktrees with current follow mode statusPOST /api/worktrees/follow
- Enable/disable follow mode for a branchGET /api/git/follow
- Check follow mode status for a repositoryPOST /api/git/event
- Internal endpoint used by git hooks