make a branch bash code example
Example 1: create new branch git from master
git checkout -b new-branch-name
Example 2: git create branch
$ git branch iss53
$ git checkout iss53
git checkout -b new-branch-name
$ git branch iss53
$ git checkout iss53