how git branches work code example
Example 1: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: create a branch command
$ git push [name_of_your_new_remote] [url]
$ git checkout -b [name_of_your_new_branch]
$ git push [name_of_your_new_remote] [url]