aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-24 09:59:55 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-24 09:59:55 -0700
commitb535a802b2b849f67a57c689eadf3faf87b819b3 (patch)
tree962f650686f1671e27f421c7300a7941a1676773
parente16c03b5495432579b864c279833d522ea463e5f (diff)
downloadgit-b535a802b2b849f67a57c689eadf3faf87b819b3.tar.gz
git-b535a802b2b849f67a57c689eadf3faf87b819b3.tar.xz
cvs2git: add support for GIT_COMMITTER_DATE
Of course, this requires a version of git that cares..
-rw-r--r--cvs2git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cvs2git.c b/cvs2git.c
index 462a8736c..b63b8bc53 100644
--- a/cvs2git.c
+++ b/cvs2git.c
@@ -69,10 +69,10 @@ static void prepare_commit(void)
printf("export GIT_COMMITTER_NAME=%s\n", author_name);
printf("export GIT_COMMITTER_EMAIL=%s\n", author_email);
+ printf("export GIT_COMMITTER_DATE='%s'\n", date);
printf("export GIT_AUTHOR_NAME=%s\n", author_name);
printf("export GIT_AUTHOR_EMAIL=%s\n", author_email);
-
printf("export GIT_AUTHOR_DATE='%s'\n", date);
if (initial_commit)