git branches tutorial code example
Example 1: creating a branch in git
git checkout -b <branch_name>
Example 2: git create branch
$ git branch iss53
$ git checkout iss53
git checkout -b <branch_name>
$ git branch iss53
$ git checkout iss53