From: Ian Jackson Date: Sun, 9 Oct 2016 00:07:59 +0000 (+0100) Subject: Quilt output: Include Date header X-Git-Tag: archive/debian/2.0~65 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=53e604f8698a5332bbf2764b971c06295c104cd1 Quilt output: Include Date header Copy this from the commit's author date. Signed-off-by: Ian Jackson --- diff --git a/dgit b/dgit index 836e19d4..2acf8495 100755 --- a/dgit +++ b/dgit @@ -3973,6 +3973,9 @@ sub quiltify ($$$$) { $commitdata =~ m/^author (.*) \d+ [-+0-9]+$/m or die "$cc ?"; my $author = $1; + my $commitdate = cmdoutput + @git, qw(log -n1 --pretty=format:%aD), $cc; + $msg =~ s/^(.*)\n*/$1\n/ or die "$cc $msg ?"; my $title = $1; @@ -3999,6 +4002,7 @@ sub quiltify ($$$$) { runcmd @git, qw(checkout -q), $target, qw(debian/changelog); quiltify_dpkg_commit "$patchname$index", $author, $msg, + "Date: $commitdate\n". "X-Dgit-Generated: $clogp->{Version} $cc\n"; runcmd @git, qw(checkout -q), $cc, qw(debian/changelog);