Git obtenga ramas remotas
git branch -r
Matthijsmgj
git branch -r
git branch -a #all local and remote branches are listed
git branch -r #remote branches are listed
git branch #only local branches are listed
git branch -r
# If this doesn't work for you, try
git ls-remote --heads <remote-name>
git for-each-ref --format=' %(authorname) %09 %(refname)' --sort=authorname