create and check out branch git code example
Example 1: git branch and checkout at the same time
$ git checkout -b <branch_name>
Example 2: make a new branch git
git checkout -b branch-name
Example 3: git create branch
$ git branch iss53
$ git checkout iss53