diff options
author | Michael Witten <mfwitten@MIT.EDU> | 2008-09-30 07:58:27 -0500 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-10-01 08:56:58 -0700 |
commit | dbf5e1e974ff6264b04759a4a3e04966b056e533 (patch) | |
tree | 23f14cb857e3a43a839316700985d63aa0de8ad4 /Documentation | |
parent | Docs: send-email: Man page option ordering (diff) | |
download | tgif-dbf5e1e974ff6264b04759a4a3e04966b056e533.tar.xz |
send-email: change --no-validate to boolean --[no-]validate
There is also now a configuration variable:
sendemail[.<identity>].validate
Signed-off-by: Michael Witten <mfwitten@mit.edu>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-send-email.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt index 0c6dbf6d53..81970f3fa4 100644 --- a/Documentation/git-send-email.txt +++ b/Documentation/git-send-email.txt @@ -182,14 +182,16 @@ configuration variable), then authentication is not attempted. + The --to option must be repeated for each user you want on the to list. ---no-validate:: - Don't perform any sanity checks on patches. +--[no-]validate:: + Perform sanity checks on patches. Currently, validation means the following: + -- * Warn of patches that contain lines longer than 998 characters; this is due to SMTP limits as described by http://www.ietf.org/rfc/rfc2821.txt. -- ++ +This option can be set with sendemail[.<identity>].validate; default to --validate CONFIGURATION @@ -242,6 +244,9 @@ sendemail.smtpencryption:: sendemail.smtpssl:: Legacy boolean that sets 'smtpencryption=ssl' if enabled. +sendemail.validate:: + Boolean override for --[no-]validate. + Author ------ Written by Ryan Anderson <ryan@michonline.com> |