diff options
author | Robby Russell <robby@planetargon.com> | 2009-09-06 09:43:54 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2009-09-06 09:43:54 -0700 |
commit | 44465ef4ce41f0928f6c59573da476a559a809a4 (patch) | |
tree | ef9b6b6b23eda6fefc852508b43a1b8af561d1ff | |
parent | 4c69833eb1e8050a5b081d31b4c2873a18ee30f6 (diff) | |
parent | 1875755f0a7aee1649b4778959cd9eeced725e01 (diff) | |
download | zsh-44465ef4ce41f0928f6c59573da476a559a809a4.tar.gz zsh-44465ef4ce41f0928f6c59573da476a559a809a4.tar.bz2 zsh-44465ef4ce41f0928f6c59573da476a559a809a4.zip |
Merge branch 'master' of git://github.com/mwilliams/oh-my-zsh into mwilliams/master
-rw-r--r-- | aliases.zsh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/aliases.zsh b/aliases.zsh index eef321de5..253c2ac64 100644 --- a/aliases.zsh +++ b/aliases.zsh @@ -12,7 +12,16 @@ alias ...='cd ../..' alias _='sudo' #alias g='grep -in' + alias g='git' +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' alias history='fc -l 1' |