git how to create branch from specific branch code example
Example 1: creating new branch in git
Create a new branch named issue1.
$ git branch testing
Example 2: git new branch create
git checkout -b <new-branch>
Create a new branch named issue1.
$ git branch testing
git checkout -b <new-branch>