add more git aliases because i'm lazy

This commit is contained in:
Michael Campagnaro 2012-11-08 19:12:10 -05:00
parent 025f5c0fb9
commit 49bff18618

8
.zshrc
View File

@ -41,6 +41,14 @@ export SAVEHIST=$HISTSIZE
# Alias # Alias
alias r=rails alias r=rails
alias g=git alias g=git
alias gst='git st'
alias gci='git ci'
alias gpom='git push origin master'
alias gf='git fetch'
alias gaa='git add --all'
alias gl='!source ~/.githelpers && pretty_git_log'
alias gdc='git diff --cached'
alias gam='git commit --amend'
alias cls=clear alias cls=clear
alias sl=ls # often screw this up alias sl=ls # often screw this up
alias history='fc -l 1' alias history='fc -l 1'