diff options
author | Carlos Rodriguez <carlos@eddorre.com> | 2012-01-26 00:11:42 -0800 |
---|---|---|
committer | Carlos Rodriguez <carlos@eddorre.com> | 2012-01-26 00:11:42 -0800 |
commit | 9d92987b8a0456e6cc51dd893159071e1fcf43db (patch) | |
tree | 31b6067431c7a221c6757f96c24c2b927e9878f4 /plugins | |
parent | 512a6e54a34fa3e54a3d0b83f2ad7f0d949292c0 (diff) | |
parent | 7553d0171f7d1fe070a70af2c863fdadf6d7d5ac (diff) | |
download | zsh-9d92987b8a0456e6cc51dd893159071e1fcf43db.tar.gz zsh-9d92987b8a0456e6cc51dd893159071e1fcf43db.tar.bz2 zsh-9d92987b8a0456e6cc51dd893159071e1fcf43db.zip |
Merge pull request #663 from gravof/patch-1
Replace "git-diff" with "git diff" in the git plugin
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index ae080662f..94af31202 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -9,7 +9,7 @@ alias gup='git fetch && git rebase' compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push -gdv() { git-diff -w "$@" | view - } +gdv() { git diff -w "$@" | view - } compdef _git gdv=git-diff alias gc='git commit -v' compdef _git gc=git-commit |