git create new branch from a 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 create new branch

// create and checkout new branch in one line
git checkout -b new_branch

Example 3: create new branch git

$ git checkout -b newBranchName

Example 4: 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