adding branch in github using command code example
Example 1: git create and checkout branch
$ 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]