create new branch locally code example
Example 1: git create new branch
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch
// First Push
git push --set-upstream origin myNewBranch
Example 2: create new branch git
$ git checkout -b [name_of_your_new_branch]
Example 3: create a branch command
$ git remote add [name_of_your_remote] [name_of_your_new_branch]
Example 4: how to switch branches in git
git checkout [branch name]
Example 5: create a branch command
$ git branch -a
Example 6: create a branch command
$ git push origin :[name_of_your_new_branch]