Make a Branch
View current branch
λ git branch
* masterCreate a new branch
λ git checkout -b new
Switched to a new branch 'new'
λ git branch
master
* newLast updated
λ git branch
* masterλ git checkout -b new
Switched to a new branch 'new'
λ git branch
master
* newLast updated