What is the git command to see all the remote branches?
Answers
Answered by
0
Answer:
Just run a git fetch command. It will pull all the remote branches to your local repository, and then do a git branch -a to list all the branches. It lists all remote branches including commit messages and commit IDs that are referred to by remote branches.
Similar questions