making a new git branch 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 fetch [name_of_your_remote]
# Create New Branch And Switch To It
$ git checkout -b myBranchName
$ git fetch [name_of_your_remote]