Merge branch 'pb/send-email-te'
authorJunio C Hamano <gitster@pobox.com>
Mon, 22 Dec 2014 20:26:53 +0000 (12:26 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 22 Dec 2014 20:26:54 +0000 (12:26 -0800)
"git send-email" learned "--transfer-encoding" option to force
a non-fault Content-Transfer-Encoding header (e.g. base64).

* pb/send-email-te:
git-send-email: add --transfer-encoding option
git-send-email: delay creation of MIME headers

1  2 
Documentation/config.txt
diff --combined Documentation/config.txt
index 9335ff2ae29c532f82bbb18220a3a2ea3531b8b4,cc2ff201be1d53cda4d35afe15b8a140b145bd6e..b563ea8d3477aa686d332a321d684f6659e9fe06
@@@ -246,17 -246,6 +246,17 @@@ core.precomposeunicode:
        When false, file names are handled fully transparent by Git,
        which is backward compatible with older versions of Git.
  
 +core.protectHFS::
 +      If set to true, do not allow checkout of paths that would
 +      be considered equivalent to `.git` on an HFS+ filesystem.
 +      Defaults to `true` on Mac OS, and `false` elsewhere.
 +
 +core.protectNTFS::
 +      If set to true, do not allow checkout of paths that would
 +      cause problems with the NTFS filesystem, e.g. conflict with
 +      8.3 "short" names.
 +      Defaults to `true` on Windows, and `false` elsewhere.
 +
  core.trustctime::
        If false, the ctime differences between the index and the
        working tree are ignored; useful when the inode change time
@@@ -850,10 -839,6 +850,10 @@@ accepted are `normal`, `black`, `red`, 
  `blink` and `reverse`.  The first color given is the foreground; the
  second is the background.  The position of the attribute, if any,
  doesn't matter.
 ++
 +Colors (foreground and background) may also be given as numbers between
 +0 and 255; these use ANSI 256-color mode (but note that not all
 +terminals may support this).
  
  color.diff::
        Whether to use ANSI escape sequences to add color to patches.
@@@ -2318,6 -2303,7 +2318,7 @@@ sendemail.smtpserverport:
  sendemail.smtpserveroption::
  sendemail.smtpuser::
  sendemail.thread::
+ sendemail.transferencoding::
  sendemail.validate::
        See linkgit:git-send-email[1] for description.