Answers for "git branch list"

22

branch list in git

git branch -a
Posted by: Guest on May-16-2020
10

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
2

git get local branches

git branch -l
Posted by: Guest on February-18-2020
3

git branch command

git branch <branchname> 
(or)
git checkout -b <branchname>
Posted by: Guest on May-23-2020
-1

git liste branches

$ git branch
Posted by: Guest on April-15-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language