create new brench on git code example
Example 1: command to create a new branch in git
$ git checkout -b <branch-name>
Example 2: create a branch command
$ git push origin [name_of_your_new_branch]
$ git checkout -b <branch-name>
$ git push origin [name_of_your_new_branch]