All you have to do is type "alias [shortcut]='[original command]'
Here's a list of general ones I have set up for Git. You could copy and paste these directly or make your own.
alias gst='git status'
alias gc='git commit'
alias gco='git checkout'
alias gl='git pull'
alias gpom="git pull origin master"