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
You also may do git fetch followed by a git branch -r. Without fetch you will not see the most current branches.
git fetch