diff options
author | Robby Russell <robby@planetargon.com> | 2013-04-23 20:53:38 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-04-23 20:53:38 -0700 |
commit | c3c355a88a15d45f87b89f69cf3c2b0245481e60 (patch) | |
tree | 9cdbece862f44c74d7368061c8a632a375906fd9 /plugins | |
parent | dd6247057ea9b8e238aea5e16446dee089f11f3e (diff) | |
parent | 27ff262e09aed87dfcab4110a57e8f36c669cb0d (diff) | |
download | zsh-c3c355a88a15d45f87b89f69cf3c2b0245481e60.tar.gz zsh-c3c355a88a15d45f87b89f69cf3c2b0245481e60.tar.bz2 zsh-c3c355a88a15d45f87b89f69cf3c2b0245481e60.zip |
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins')
-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 15f901f86..d6b2632b3 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -3,6 +3,8 @@ alias g='git' compdef g=git alias gst='git status' compdef _git gst=git-status +alias gd='git diff' +compdef _git gd=git-diff alias gl='git pull' compdef _git gl=git-pull alias gup='git pull --rebase' |