git installing let git decide master code example
Example 1: git create new branch
// create and checkout new branch in one line
git checkout -b new_branch
Example 2: how to commit a branch in git
git commit -m "added my github name"
// create and checkout new branch in one line
git checkout -b new_branch
git commit -m "added my github name"