how to create my own branch in git code example
Example 1: create a branch command
$ git checkout -b [name_of_your_new_branch]
Example 2: create a branch command
$ git fetch [name_of_your_remote]
$ git checkout -b [name_of_your_new_branch]
$ git fetch [name_of_your_remote]