create a git brach code example
Example 1: creating a branch in git
git checkout -b <branch_name>
Example 2: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"
git checkout -b <branch_name>
$ git checkout -b iss53
Switched to a new branch "iss53"