Git/posh-git commands

This is a rough list, in no particular order (yet), but here's the commands I've found useful after being converted to posh-git after my Google+ post.

git add -u
    Add all changes (including deletions)

git rm <file>
    Stage file deletion.

git commit -m "Message"
    Commit with Message.

git push
    Push to GitHub

git status
    See what has changed/etcetera

git pull
    Pull from GitHub

git add <tab> <tab>
    Add multiple files, space delimited

git diff <file>
    Difference. Use Shift + Q to quit.

git reset HEAD <file>
    Unstage change.

git config -l
    List all configuration settings for the current repository.