From b535a802b2b849f67a57c689eadf3faf87b819b3 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Tue, 24 May 2005 09:59:55 -0700 Subject: [PATCH] cvs2git: add support for GIT_COMMITTER_DATE Of course, this requires a version of git that cares.. --- cvs2git.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvs2git.c b/cvs2git.c index 462a8736..b63b8bc5 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) -- 2.11.0