making new branch in git code example
Example 1: command to create a new branch in git
$ git checkout -b <branch-name>
Example 2: how to make branch in git command
git branch crazy-experiment
$ git checkout -b <branch-name>
git branch crazy-experiment