|
|
|
|
|
by dier
873 days ago
|
|
I've found worktrees[1] are a great tool for this use case. "oh. i should fix this, but it doesn't have anything to do with what i'm currently solving." cd ../worktree-checkout, make a branch, do the fix, push, open a pr. then cd ../original-checkout and continue on. rebasing the fix into my wip when the PR is merged (or cherry-pick if you're confident) as needed. 1. https://git-scm.com/docs/git-worktree |
|