create local git branch command code example
Example 1: command to create a new branch in git
$ 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]