diff options
author | Wieland Hoffmann <themineo@gmail.com> | 2015-01-16 23:22:45 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2015-01-17 13:00:23 +0100 |
commit | 9ca77b2143e86cd2d01ac602384cd82b7e664190 (patch) | |
tree | c3c95eda7617d2b8ead24932d83e02a3baf7b897 | |
parent | aa503b592bc3468cbb768b2adb0852674628336d (diff) | |
download | zsh-9ca77b2143e86cd2d01ac602384cd82b7e664190.tar.gz zsh-9ca77b2143e86cd2d01ac602384cd82b7e664190.tar.xz zsh-9ca77b2143e86cd2d01ac602384cd82b7e664190.zip |
_git: Change one --validate to --no-validate
As the description of that argument says, it's used to *not* perform sanity checks.
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index bdb58e52c..afdd281d2 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -3729,7 +3729,7 @@ _git-send-email () { '(--format-patch )--no-format-patch[interpret ambiguous arguments file-name arguments]' \ '--quiet[be less verbose]' \ '( --no-validate)--validate[perform sanity checks on patches]' \ - '(--validate )--validate[do not perform sanity checks on patches]' \ + '(--validate )--no-validate[do not perform sanity checks on patches]' \ '--force[send emails even if safety checks would prevent it]' \ '*: :_files' } |