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