diff options
author | Robby Russell <robby@planetargon.com> | 2014-08-31 10:28:28 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-08-31 10:28:28 -0700 |
commit | 686f29f07d3798924898a8693098415cadb8c8ac (patch) | |
tree | 86718fcd4f50618ef0e737b858ceb32229c6857a | |
parent | a1c5abf6bfb4d6f2d07e4a26ce6790c0c1c68d3e (diff) | |
parent | 5d6c73d7d38930443bdc4357c337e0baf7d5b5fb (diff) | |
download | zsh-686f29f07d3798924898a8693098415cadb8c8ac.tar.gz zsh-686f29f07d3798924898a8693098415cadb8c8ac.tar.bz2 zsh-686f29f07d3798924898a8693098415cadb8c8ac.zip |
Merge pull request #3052 from DariusPHP/master
#git plugin git diff-tree --name-only added
-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 9f7819df3..a76bb1cdf 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -7,6 +7,8 @@ alias gd='git diff' compdef _git gd=git-diff alias gdc='git diff --cached' compdef _git gdc=git-diff +alias gdt='git diff-tree --no-commit-id --name-only -r' +compdef _git gdc=git diff-tree --no-commit-id --name-only -r alias gl='git pull' compdef _git gl=git-pull alias gup='git pull --rebase' |