Answers for "how to get list of all branches from origin"

1

get all remote branches

git fetch --all
Posted by: Guest on September-18-2020
2

get all branches from remote

You can fetch all branches from all remotes like this:
git fetch --all
Posted by: Guest on July-08-2020
5

git list all remote branches

git branch -r
Posted by: Guest on February-18-2020

Code answers related to "how to get list of all branches from origin"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language