how to checkout and create a branch in git code example
Example 1: git command to create a branch
git checkout -b [name_of_your_new_branch]
git push --set-upstream origin [name_of_your_new_branch]
Example 2: git checkout new branch
git checkout -b new_branch
Example 3: git create new branch from current
git checkout -b topic/newbranch
Example 4: create new branch git
$ git checkout -b newBranchName
Example 5: create branch from existing branch
$ git checkout -b myFeature dev
Example 6: git create and checkout branch
$ git checkout -b <branch_name>