4
The title says it all. Around and a half we use the git
as follows:
git checkout branch_x
git checkout branch_y
git checkout branch_x
x
can be master
, or some Feature branch whichever.
I wonder if there’s any way back to the last branch used.
git has something equivalent to cd -
for directories on the command line?
Opa, by another answer on that same link I discovered that
git checkout -
also works in relatively modern versions of Git. Thank you very much!– Anthony Accioly