How do I fetch all Git branches?
I cloned a Git repository containing many branches. However, git branch only shows one:
$ git branch
* master
How would I pull all the branches locally so when I do git branch, it shows the following?
$ git branch
* master
* staging
* etc...