how to create a branch in terminal code example
Example 1: create a branch command
$ git remote add [name_of_your_remote] [name_of_your_new_branch]
Example 2: create a branch command
$ git fetch [name_of_your_remote]
$ git remote add [name_of_your_remote] [name_of_your_new_branch]
$ git fetch [name_of_your_remote]