Commonly used GIT commands
Although SVN commands come in naturally, I’m finding that having a list of GIT commands nearby is always handy.
git status
See where you are, what’s outstanding.
git add .
Register current changes to the repository.
git commit
Commit outstanding changes to the repository.
git push
Push changes to the repository.
git pull
Pull changes from the repository.