Want to make a branch ?
git checkout
Want to make switch branches ?
git checkout
Want to get a specific file version ?
git checkout
Want to get remove changes to one file ?
Believe it or not, also
git checkout
You must log in or register to comment.
This checks out!
Fun fact! If you have to quickly swap between two different branches you should try:
git checkout -
It will swap to the previous branch you were on. Have fun!