How to checkout recent branch in git?
Use the following command to checkout recent branch:
git checkout -
It's basically an alias for:
git checkout @{-1}
You can checkout any previous branch, by replacing N with the N-th last branch that was checked out.
git checkout @{-N}
Following d...
blog.macieksitkowski.com1 min read