how to make a new branch on my local branch using git code example
Example 1: create branch in git
# Create New Branch And Switch To It
$ git checkout -b myBranchName
Example 2: how to commit a branch in git
git commit -m "added my github name"
# Create New Branch And Switch To It
$ git checkout -b myBranchName
git commit -m "added my github name"