git how to create a development branch code example
Example 1: creating a branch in git
git checkout -b <branch_name>
Example 2: how to create a branch in git
$ git branch [name of branch]
git checkout -b <branch_name>
$ git branch [name of branch]