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
TL;TR;
This is the solution of your problem:
git remote update --prune # To update all remotes git branch -r # To display remote branches
or:
git remote update --prune # To update all remotes git branch # To display all branches