how to create branch on terminal code example
Example 1: git create branch
$ git branch iss53
$ git checkout iss53
Example 2: git new branch create
git checkout -b <new-branch>
$ git branch iss53
$ git checkout iss53
git checkout -b <new-branch>