Github Aliases
# From: https://git-scm.com/book/it/v2/Git-Basics-Git-Aliases
# Run this on your command line:
$ git config --global alias.co checkout ## git co
$ git config --global alias.br branch ## git br
$ git config --global alias.ci commit ## git ci
$ git config --global alias.st status ## git st
$ git config --global alias.pu status ## git pu
## git last -- will give you the last commit
$ git config --global alias.last 'log -1 HEAD'