how to make branch in git command

C++
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch// create and checkout new branch in one line
git checkout -b new_branchgit branch crazy-experiment
Source

Also in C++: