I\'ve tried git branch -r, but that only lists remote branches that I\'ve tracked locally. How do I find the list of those that I haven\'t? (It doesn\'t matter
git branch -r
Just run a git fetch command. It will pull all the remote branches to your local repository, and then do a git branch -a to list all the branches.
git fetch
git branch -a