how to use branches in git code example
Example 1: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 2: git branch command
git branch <branchname>
(or)
git checkout -b <branchname>
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
git branch <branchname>
(or)
git checkout -b <branchname>