diff options
author | Tehmasp Chaudhri <tehmasp@gmail.com> | 2013-07-12 12:03:44 -0600 |
---|---|---|
committer | Tehmasp Chaudhri <tehmasp@gmail.com> | 2013-07-12 12:03:44 -0600 |
commit | 57a2327ddff8ed88492dd32cc57ccd5fd5c6e9ac (patch) | |
tree | b809e08fdead5547f5b7ab375fbda24600df7466 /plugins | |
parent | 7f74294d7aa7ab86e18e70a1153c15fa373c5849 (diff) | |
download | zsh-57a2327ddff8ed88492dd32cc57ccd5fd5c6e9ac.tar.gz zsh-57a2327ddff8ed88492dd32cc57ccd5fd5c6e9ac.tar.bz2 zsh-57a2327ddff8ed88492dd32cc57ccd5fd5c6e9ac.zip |
Added a 'git diff --cached' alias -> 'gdc'
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 2ecc74eb6..3522703ef 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -5,6 +5,8 @@ alias gst='git status' compdef _git gst=git-status alias gd='git diff' compdef _git gd=git-diff +alias gdc='git diff --cached' +compdef _git gdc=git-diff alias gl='git pull' compdef _git gl=git-pull alias gup='git pull --rebase' |