diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-24 09:59:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-24 09:59:55 -0700 |
commit | b535a802b2b849f67a57c689eadf3faf87b819b3 (patch) | |
tree | 962f650686f1671e27f421c7300a7941a1676773 | |
parent | e16c03b5495432579b864c279833d522ea463e5f (diff) | |
download | git-b535a802b2b849f67a57c689eadf3faf87b819b3.tar.gz |
cvs2git: add support for GIT_COMMITTER_DATE
Of course, this requires a version of git that cares..
-rw-r--r-- | cvs2git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |