how to make master branch in git code example
Example 1: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: creating a branch in git
git checkout -b <branch_name>
$ git checkout -b [name_of_your_new_branch]
git checkout -b <branch_name>