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