I somehow often end up working on a few branches in parallel and some things make my life easier: git switch -: Like the cd command git switch and git checkout take a - argument which takes you back to the previously checked out branch. $ git branch * citizen428/long-branch-name $ git switch main Switched to branch 'main' Your branch is up to date with 'origin/main'. $ git switch - Switched to branch 'citizen428/long-branch-name' Your branch is up to date with 'origin/citizen428/long-branch-n...