to create a new git branch and move into it code example
Example 1: create and go to branch
git checkout -b <branch_name>
Example 2: git branch and checkout at the same time
$ git checkout -b <branch_name>
git checkout -b <branch_name>
$ git checkout -b <branch_name>