how to create a new branch in git from master code example
Example 1: git create new branch
// create and checkout new branch in one line
git checkout -b new_branch
Example 2: creating new branch in git
Create a new branch named issue1.
$ git branch testing