diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-04 08:27:13 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-04 08:27:13 -0800 |
commit | 178bce287ea26e5052091e66415521703848d5da (patch) | |
tree | 0db169c4861c0b0ce64eb7f9ae97fe5537558c53 /plugins/git | |
parent | 63deae380cece1abe4634e68a3e0df817b152da4 (diff) | |
parent | 0118b5b759f3471478065b2163250852b7fa8c73 (diff) | |
download | zsh-178bce287ea26e5052091e66415521703848d5da.tar.gz zsh-178bce287ea26e5052091e66415521703848d5da.tar.bz2 zsh-178bce287ea26e5052091e66415521703848d5da.zip |
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/git')
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 35639096e..f39a73c92 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -9,6 +9,7 @@ alias gup='git pull --rebase' compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push +alias gd='git diff' gdv() { git diff -w "$@" | view - } compdef _git gdv=git-diff alias gc='git commit -v' @@ -24,6 +25,7 @@ alias gba='git branch -a' compdef _git gba=git-branch alias gcount='git shortlog -sn' compdef gcount=git +alias gcl='git config --list' alias gcp='git cherry-pick' compdef _git gcp=git-cherry-pick alias glg='git log --stat --max-count=5' |