how to create a new branch in terninal 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 from current

git checkout -b topic/newbranch

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