github cli create new branch from another branch code example
Example 1: how to create branch in github using git bash
$ git checkout -b [name_of_your_new_branch]
Example 2: git create and checkout branch
$ git branch <branch_name>
$ git checkout <branch_name>