Process Flow - Creating a worktree
Start in main repo
Run git worktree add <path> <branch>
Git creates new directory at <path>
New worktree linked to main repo
Switch to new worktree directory
Work independently on <branch>
Commit, push, or switch back anytime
This flow shows how git creates a new linked working directory (worktree) for a branch, allowing parallel work.