From peepcode screencasts. Hope they don’t mind copying that.
</tt>
<blockquote># Git aliases for bash
# Put in ~/.bash_profile
alias gst='git status'
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gb='git branch'
alias gba='git branch -a'