diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-20 23:00:07 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-20 23:00:07 -0800 |
commit | 2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450 (patch) | |
tree | 58766d8d0e7cc77ae3ad7106d5ff469a4567c24a /git-send-email.perl | |
parent | 8e9739914972419baad820e76b44d9720ed885c2 (diff) | |
parent | 8641ee3dcbae749c42b7cf117ba3050e2cb95a93 (diff) | |
download | git-2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450.tar.gz |
Merge branch 'maint'
* maint:
send-email: add transfer encoding header with content-type
Doc fix for git-reflog: mention @{...} syntax, and <ref> in synopsys.
config: clarify compression defaults
config: correct core.loosecompression documentation
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | git-send-email.perl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 990e44bf02..9c6fa6441a 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -785,7 +785,8 @@ foreach my $t (@files) { else { push @xh, 'MIME-Version: 1.0', - "Content-Type: text/plain; charset=$author_encoding"; + "Content-Type: text/plain; charset=$author_encoding", + 'Content-Transfer-Encoding: 8bit'; } } } |