how to create new branch in terminal code example
Example 1: create branch from another branch
$ git checkout -b myFeature dev
Example 2: create a branch command
$ git branch -a
$ git checkout -b myFeature dev
$ git branch -a