my time machine works !!!
it's 2003 all over again
git add . (current dir) git add --all (entire repo -A)
git reset HEAD <file/folder>
git add -p (interactive staging y/n)
git diff --cached (diff staged files)
git diff HEAD (diff dirty files)
git checkout <file/folder> (discard dirty changes)
git commit -m <message>
git commit -am <message>
git reset --soft HEAD^
git reset --hard HEAD^ (undo last commit)
git revert <sha1> (create contrary changes)
git commit --amend (update last commit message)
git stash
git pull
git commit -am "Fix crap"
git add --all
git commit -m "Fix crap"
git pull
git fetch (update local repo)
git pull (fetch + merge)
git push (push modification to remote)
git fetch -p (remove local branches)
git push --all (push all branches)
git push --force (overwrite remote)
git push --tags (push tags to remote)
git push origin :<tag/branch> (remove from remote)
git stash ("clean" working directory)
git stash save <name> (save named stash)
git stash list (list stashed items)
git stash pop (apply latest stash)
git stash apply <stash> (apply stash item)
git stash drop <stash> (remove stash item)
git cherry-pick <sha1> (move one commit)
git whatchanged <file> (see history for file)
git diff <branch> (diff between branches)
git config --global alias.unstage 'reset HEAD'
hook to git events like pre-push, post-push...
Remove unneeded code before commit (console.log)
Run tests before push
Run linting and other validations before push
Notify people on merges...