Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-commit-tree: allow overriding of commit date
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 24 May 2005 17:21:13 +0000
(10:21 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 24 May 2005 17:21:13 +0000
(10:21 -0700)
Using GIT_COMMITTER_DATE, of course..
commit-tree.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
25d5ea4
)
diff --git
a/commit-tree.c
b/commit-tree.c
index e81e530fd4d5a118f814754455d36d83649b3124..e9069971a8bbe413ceb71f63fc48513a475a4d6f 100644
(file)
--- a/
commit-tree.c
+++ b/
commit-tree.c
@@
-107,8
+107,8
@@
int main(int argc, char **argv)
unsigned char commit_sha1[20];
char *gecos, *realgecos, *commitgecos;
char *email, *commitemail, realemail[1000];
unsigned char commit_sha1[20];
char *gecos, *realgecos, *commitgecos;
char *email, *commitemail, realemail[1000];
- char date[
20], realdate[2
0];
- char *audate;
+ char date[
50], realdate[5
0];
+ char *audate
, *cmdate
;
char comment[1000];
struct passwd *pw;
char *buffer;
char comment[1000];
struct passwd *pw;
char *buffer;
@@
-151,6
+151,9
@@
int main(int argc, char **argv)
audate = gitenv("GIT_AUTHOR_DATE");
if (audate)
parse_date(audate, date, sizeof(date));
audate = gitenv("GIT_AUTHOR_DATE");
if (audate)
parse_date(audate, date, sizeof(date));
+ cmdate = gitenv("GIT_COMMITTER_DATE");
+ if (cmdate)
+ parse_date(audate, realdate, sizeof(realdate));
remove_special(gecos); remove_special(realgecos); remove_special(commitgecos);
remove_special(email); remove_special(realemail); remove_special(commitemail);
remove_special(gecos); remove_special(realgecos); remove_special(commitgecos);
remove_special(email); remove_special(realemail); remove_special(commitemail);