create new brach in git code example
Example 1: git create and checkout branch
$ git checkout -b <branch_name>
Example 2: create a branch command
$ git fetch [name_of_your_remote]
$ git checkout -b <branch_name>
$ git fetch [name_of_your_remote]