pcreate a branch from branch git bash code example
Example 1: create branch in git
# Create New Branch And Switch To It
$ git checkout -b myBranchName
Example 2: how to make branch in git command
git branch crazy-experiment
# Create New Branch And Switch To It
$ git checkout -b myBranchName
git branch crazy-experiment