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