how create a branch in git code example
Example 1: create branch in git
# Create New Branch And Switch To It
$ git checkout -b myBranchName
Example 2: create a branch command
$ git push [name_of_your_new_remote] [url]
# Create New Branch And Switch To It
$ git checkout -b myBranchName
$ git push [name_of_your_new_remote] [url]