Ever want to checkout a new git branch from another branch without setting up tracking?
Here is the longhand way:
git checkout old-branch git branch new-branch git checkout new-branch
But there is a quicker way:
git checkout -b new-branch old-branch
… which does the same thing, albiet in one command.