+1 vote
in Git by

What is the GIT command to see all the remote branches?

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?

1 Answer

0 votes
by
git branch -r
...