Получите все отдаленные филиалы
git fetch --all
Cautious Coyote
git fetch --all
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 -l
git branch -r
# If this doesn't work for you, try
git ls-remote --heads <remote-name>
git remote show <remote-name>