On Github brettchalupa / git-presentation
Press [Space] To Progress
git diff # show the differences
git branch -a # show all branches, locally and remotely
git remote # list remotes
git remote -v # list remotes with detail
git reset --hard HEAD~1 # go back 1 commit before the head
git remote rename origin github # rename a remote
git stash # temporarily store your changes
git stash pop # pop stashed changes back on top
git stash drop # drop stashed changes