diff options
| author | Robby Russell <robby@planetargon.com> | 2013-09-19 06:56:58 -0700 | 
|---|---|---|
| committer | Robby Russell <robby@planetargon.com> | 2013-09-19 06:56:58 -0700 | 
| commit | 26e936e64584b7a1da0c8b2c063d485fde6fd439 (patch) | |
| tree | 90ece3c8fc9e4fd678e4812e555ec969d08320de /plugins | |
| parent | 4275e68bb3192543f7567b75795b13d28c370cf3 (diff) | |
| parent | 57a2327ddff8ed88492dd32cc57ccd5fd5c6e9ac (diff) | |
| download | zsh-26e936e64584b7a1da0c8b2c063d485fde6fd439.tar.gz zsh-26e936e64584b7a1da0c8b2c063d485fde6fd439.tar.bz2 zsh-26e936e64584b7a1da0c8b2c063d485fde6fd439.zip | |
Merge pull request #1967 from tchaudhri/gdc_git_alias
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 bcb32384b..d8ea3ae0c 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' | 
