Problem Statement
You want to work on two branches simultaneously from the same repo without stashing. What feature helps?
Explanation
`git worktree add ../path <branch>` creates another working tree tied to the same `.git` data, enabling parallel checkouts.
Practice Sets
This question appears in the following practice sets:
