# BRANCHES git branch # list all local branches git branch -a # list all branches (local and remote) # Clone remote branches - http://stackoverflow.com/a/72156/1574059 git checkout -b branch-name origin/branch-name # create local branch and set it to track origin/branch-name