Answers for "git list branchses"

7

list of git branches

git branch -a // show all local & remote branch
Posted by: Guest on February-23-2022
15

git branch list

git branch -a 	#all local and remote branches are listed
git branch -r 	#remote branches are listed
git branch 		#only local branches are listed
Posted by: Guest on November-12-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language