git crate new branch 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: git new branch
# to create a new "footer-fix" branch
$ git branch footer-fix
# to create AND switch to "footer-fix" branch
$ git checkout -b footer-fix