create branch using git command code example
Example 1: how to make branch in git command
git branch crazy-experiment
Example 2: create a branch command
$ git fetch [name_of_your_remote]
git branch crazy-experiment
$ git fetch [name_of_your_remote]