Answers for "show all remote branches git"

4

show all remote branches git

git branch -r
Posted by: Guest on October-09-2020
0

show all remote branches git

git remote show <remote-name>
Posted by: Guest on October-09-2020
0

list remote branches git

git branch -r
# If this doesn't work for you, try
git ls-remote --heads <remote-name>
Posted by: Guest on September-01-2021
0

git list all remote branches created by me

git for-each-ref --format=' %(authorname) %09 %(refname)' --sort=authorname
Posted by: Guest on October-09-2020
-1

show all remote branches git

git ls-remote --heads <remote-name>
Posted by: Guest on October-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language