git branch command options code example
Example 1: how to see all branches in git
git branch -a
Example 2: git branch command
git branch <branchname>
(or)
git checkout -b <branchname>
git branch -a
git branch <branchname>
(or)
git checkout -b <branchname>