Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] _git: Change one --validate to --no-validate
- X-seq: zsh-workers 34314
- From: Wieland Hoffmann <themineo@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] _git: Change one --validate to --no-validate
- Date: Fri, 16 Jan 2015 23:22:45 +0100
- Cc: Wieland Hoffmann <themineo@xxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ojLWIqvJD5Pe24ptN5YbDuyU4qVhyT4tXpwh8bdimRM=; b=Pkb3UcwU+l/CjEGLJSH28vYEEYyO+QeA98IrsOd8qvs/XP287i7sfl3VadLHmtub1g 5jHnGfFLSnnqBTm7pn+WKgg2uhLIcL1CrUaj6xVe6XkVBYHz388xwde/vHlA+Oqm5z3R Z8mGr8OIB/cErtDXh2oNi5806aHwfgFFaD2HNwZFLqizktjP7zKtaai7t1w+9XKHAf6N tUxCYooG0ZR/glb4xTA5f5fLWHO3da3FkvuidONCmc++asD+Cgm8c6VUdTISyDXSY6+n r3xGdJz8lp97g+nhCHqXASB5zd7D/HmMXu7XLvlr7VRfc4pzF4Qw1HOmFaWXRlIbAO/7 3mEA==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
As the description of that argument says, it's used to *not* perform
sanity checks.
---
Completion/Unix/Command/_git | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index bdb58e5..afdd281 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'
}
--
2.2.2
Messages sorted by:
Reverse Date,
Date,
Thread,
Author