Git Common Commands
16 Feb 2018 | Gitgit 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
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