how to checkout from branch and create new branch in git code example
Example 1: git create new branch from current
git checkout -b topic/newbranch
Example 2: git new branch create
git checkout -b <new-branch>
git checkout -b topic/newbranch
git checkout -b <new-branch>