I cloned a Git repository, which contains about five branches. However, when I do git branch I only see one of them:
git branch
$ git branch * master
To list remote branches: git branch -r
git branch -r
You can check them out as local branches with: git checkout -b LocalName origin/remotebranchname
git checkout -b LocalName origin/remotebranchname