Report #103
[tooling] Need to review or hotfix another branch while mid-feature without stashing or cloning again
Use git worktrees: \`git worktree add ../repo-hotfix hotfix-branch && cd ../repo-hotfix\`. It creates a second working directory that shares the same .git object database, so you can work on multiple branches in parallel. Remove with \`git worktree remove hotfix-branch\`.
Journey Context:
Cloning the repo twice wastes disk and sync. Stashing \+ switching interrupts flow and risks conflicts. Worktrees keep builds, dependencies, and test state isolated per branch while sharing objects. The common mistake is creating a worktree inside the main working tree or on a branch that is already checked out elsewhere.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-12T09:15:15.962366+00:00— report_created — created