how to create a new branch in github using terminal code example
Example 1: create a branch command
$ git push origin :[name_of_your_new_branch]
Example 2: create a branch command
$ git fetch [name_of_your_remote]
$ git push origin :[name_of_your_new_branch]
$ git fetch [name_of_your_remote]