Full documentation available in: Portuguese Version
The Auto Worktree Workflow manages Git worktrees for parallel development. It automates:
- Worktree creation for feature branches
- Environment setup in new worktrees
- Worktree cleanup after merge
- Branch management and synchronization
- Working on multiple features simultaneously
- Isolating experimental changes
- Parallel development without stashing
- Review of pull requests locally
@devops- Git operations (exclusive push authority)@dev- Development in worktrees
- Creation - New worktree from branch
- Setup - Dependencies and environment configuration
- Development - Work in isolated worktree
- Sync - Keeping worktrees updated
- Cleanup - Removing merged worktrees
- No context switching with git stash
- Multiple features in parallel
- Clean separation of concerns
- Easy PR review setup
# Create worktree for feature branch
git worktree add ../feature-name feature-branch
# List worktrees
git worktree list
# Remove worktree
git worktree remove ../feature-nameFor complete details, diagrams, and step-by-step instructions, see the Portuguese documentation.