how to branch out from a branch in git code example
Example 1: make a new branch git
git checkout -b branch-name
Example 2: git new branch create
git checkout -b <new-branch>
git checkout -b branch-name
git checkout -b <new-branch>