how to make branch master in git code example
Example 1: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: create branch in git
# Create New Branch And Switch To It
$ git checkout -b myBranchName
Example 3: create new branch git from master
git checkout -b new-branch-name