mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
git-send-email: do not pass custom Date: header
We already generate a Date: header based on when the patch was emailed. git-format-patch includes the Date: header of the patch. Having two Date: headers is just confusing, so we just use the current Date: Often the mailed patches in a patch series are created over a series of several hours or days, so the Date: header from the original commit is incorrect for email, and often far off enough for spam filters to complain. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
178e015c05
commit
1d6a003a42
@ -514,7 +514,7 @@ foreach my $t (@files) {
|
||||
$2, $_) unless $quiet;
|
||||
push @cc, $2;
|
||||
}
|
||||
elsif (/^[-A-Za-z]+:\s+\S/) {
|
||||
elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
|
||||
push @xh, $_;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user