| Repository Setup |
git init, git clone, git config, git alias |
| Saving Changes |
git add, git commit, git diff,git stash,.gitignore |
| Inspecting |
git status, git tag, git blame, git log |
| Undoing Changes |
git checkout, git clean, git revert, git reset, git rm |
| Rewriting History |
git commit --amend, git rebase, git rebase -i, git reflog |
| Syncing |
git remote, git fetch, git pull, git push |
| Branch & Merge |
git branch, git checkout (Branch), git merge |
|