git command to create a new branch code example
Example 1: git create new branch
git checkout -b myNewBranch
git push --set-upstream origin myNewBranch
Example 2: git create branch
$ git checkout -b [name_of_your_new_branch]
Example 3: git create new branch
git checkout -b new_branch
Example 4: git create new branch from current
git checkout -b topic/newbranch
Example 5: createa. branch off of development git
git checkout -b myFeature dev
Example 6: how to create a branch in git
$ git branch [name of branch]