John Kwong's Tech Notes Sharing my thoughts about tech and art.

Git Common Commands

git commit  
git branch newImage # New a branch
git checkout newImage; git commit # Put us on the new branch
git checkout -b newImage # create a new branch and check it out at the same time