Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-21 10:00:07 +0300
committerJunio C Hamano <gitster@pobox.com>2007-11-21 10:00:07 +0300
commit2ce1a1f23fd83d2cab22f87aff1165fb0c7ad450 (patch)
tree58766d8d0e7cc77ae3ad7106d5ff469a4567c24a /git-send-email.perl
parent8e9739914972419baad820e76b44d9720ed885c2 (diff)
parent8641ee3dcbae749c42b7cf117ba3050e2cb95a93 (diff)
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 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';
}
}
}