get list of all branches in current git project code example
Example: 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
git branch -a #all local and remote branches are listed
git branch -r #remote branches are listed
git branch #only local branches are listed