aboutsummaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-20 23:00:07 -0800
committerJunio C Hamano <gitster@pobox.com>2007-11-20 23:00:07 -0800
commit2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450 (patch)
tree58766d8d0e7cc77ae3ad7106d5ff469a4567c24a /git-send-email.perl
parent8e9739914972419baad820e76b44d9720ed885c2 (diff)
parent8641ee3dcbae749c42b7cf117ba3050e2cb95a93 (diff)
downloadgit-2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450.tar.gz
git-2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450.tar.xz
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-xgit-send-email.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index 990e44bf0..9c6fa6441 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';
}
}
}