how to make a new branch in git and checkout to it code example
Example 1: git new branch create
git checkout -b <new-branch>
Example 2: how to make branch in git command
git branch crazy-experiment
git checkout -b <new-branch>
git branch crazy-experiment