how to check git branch in terminal 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