how to checkout a new branch from a given branch in git code example
Example 1: git checkout new branch
// create and checkout new branch in one line
git checkout -b new_branch
Example 2: git create and checkout branch
$ git checkout -b <branch_name>