creating a branch in git command line code example
Example 1: create a branch command
$ git push [name_of_your_new_remote] [url]
Example 2: create a branch command
$ git fetch [name_of_your_remote]
$ git push [name_of_your_new_remote] [url]
$ git fetch [name_of_your_remote]