diff options
author | m0viefreak <m0viefreak.cm@googlemail.com> | 2013-10-20 19:41:02 +0200 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2013-10-21 17:39:53 +0200 |
commit | 80cb8e947fc2c28e7be4a4e548f0bb34f2a19e9d (patch) | |
tree | 754e350bb8df5aae1cb0bf598153b9fe62cd5fa6 | |
parent | 5585b95f3c65d87f698234a781552b006b56e930 (diff) | |
download | zsh-80cb8e947fc2c28e7be4a4e548f0bb34f2a19e9d.tar.gz zsh-80cb8e947fc2c28e7be4a4e548f0bb34f2a19e9d.tar.xz zsh-80cb8e947fc2c28e7be4a4e548f0bb34f2a19e9d.zip |
31857: _git: Remove unsupported -q option from diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 5e7370a26..fd8d54704 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-10-21 m0viefreak <m0viefreak.cm@googlemail.com> + + * 31857: Completion/Unix/Command/_git: _git: Remove unsupported -q + option from diff options + 2013-10-21 Øystein Walle <oystwa@gmail.com> * 31853: Completion/Unix/Command/_git: _git: Add missing column.* diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 2edf116cf..75884b717 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5959,7 +5959,6 @@ __git_setup_diff_options () { '(-0 -1 -2 -3 --base --ours --theirs -c --cc --no-index)'{-3,--theirs}'[diff against "their branch" version]' '(-0 -1 -2 -3 --base --ours --theirs -c --cc --no-index)-0[omit diff output for unmerged entries]' '(-0 -1 -2 -3 --base --ours --theirs -c --cc --no-index)'{-c,--cc}'[compare "our branch", "their branch" and working tree files]' - '-q[remain silent even on nonexisting files]' # TODO: --cumulative is undocumented. '--cumulative[undocumented]' |