git create and switch new branch code example
Example 1: create and go to branch
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"