how do we create the brance using git code example
Example 1: command to create a new branch in git
$ git checkout -b <branch-name>
Example 2: creating new branch in git
Create a new branch named issue1.
$ git branch testing
$ git checkout -b <branch-name>
Create a new branch named issue1.
$ git branch testing