I cloned a Git repository, which contains about five containing many branches. However, when I do git branch I only seeshows one of them:
$ git branch
* master
I know that I can do git branch -a to see all the branches, but howHow would I pull all the branches locally so when I do git branch, it shows the following?
$ git branch
* master
* staging
* etc...