git create new brache code example
Example 1: git create and checkout branch
$ git checkout -b <branch_name>
Example 2: create a branch command
$ git branch -d [name_of_your_new_branch]
$ git checkout -b <branch_name>
$ git branch -d [name_of_your_new_branch]