commit: print "Date" line when the user has set date
commitb7242b8c9e4b3c57a07c2a76d0337389605aadcc
authorJeff King <peff@peff.net>
Fri, 2 May 2014 01:10:01 +0000 (1 21:10 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 2 May 2014 21:14:21 +0000 (2 14:14 -0700)
tree34772e47e05d428e7608ee04f5922ff56f4c1539
parentd1053246554d176173893a5283dc0c0fb563ed03
commit: print "Date" line when the user has set date

When we make a commit and the author is not the same as the
committer (e.g., because you used "-c $commit" or
"--author=$somebody"), we print the author's name and email
in both the commit-message template and as part of the
commit summary. This is a safety check to give the user a
chance to confirm that we are doing what they expect.

This patch brings the same safety for the "date" field,
which may be set by "-c" or by using "--date".  Note that we
explicitly do not set it for $GIT_AUTHOR_DATE, as it is
probably not of interest when "git commit" is being fed its
parameters by a script.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
t/t3508-cherry-pick-many-commits.sh
t/t7501-commit.sh
t/t7502-commit.sh