how to add branch local in git 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
// create and checkout new branch in one line
git checkout -b new_branch
Create a new branch named issue1.
$ git branch testing