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...
Nov 7, 20221 min read27