up vote 11 down vote favorite
7
share [g+] share [fb]

I need to make some commits using Git but I would like the timestamp in git-log to be in the future.

How can I do a commit in git that causes a future timestamp to register in the git-log?

Thanks

Git-noob

link|improve this question
feedback

6 Answers

up vote 24 down vote accepted

You should wait a bit.

Or you can do this:

/tmp/x 604% env GIT_AUTHOR_DATE='Wed Dec 19 15:14:05 2029 -0800' git commit -m 'future!'
[master]: created 6348548: "Future!"
 1 files changed, 1 insertions(+), 0 deletions(-)

/tmp/x 605% git log 

Author: Dustin Sallings <dustin@spy.net>
Date:   Wed Dec 19 15:14:05 2029 -0800

    Future!

Note that there's both an author date and a committer date, so be sure to set the right one (or both).

link|improve this answer
2  
It also works with ISO 8601 date format: "2029-12-19 15:14:05 -0800". I like that. – sunny256 Sep 2 '09 at 21:00
What is the difference between GIT_AUTHOR_DATE and GIT_COMMITTER_DATE? – Blago Oct 29 '11 at 0:46
2  
@Blago: In git, the author (person who wrote the change) and committer (person who put the change in the repository) are tracked separately. Lets you do all kinds of great things. – Dustin Oct 30 '11 at 5:16
feedback

You can amend the commit, an example with the year 2037:

git commit --amend --date="Wed Feb 16 14:00 2037 +0100"

I tried the year 2038 too but then I got a null value for the date.

link|improve this answer
2  
Anything up to January 19th 3:14:07 2038 UTC should work. en.wikipedia.org/wiki/Year_2038_problem – Arrowmaster Feb 16 '11 at 20:31
feedback

If you want to retain an actual change-date when adding a project to git, you can do so with

env GIT_AUTHOR_DATE="`ls -rt *.cpp|tail -1|xargs date -u -r`" git commit -m "Old sources retaining old change-dates of last changed
 file: `ls -rt *.cpp|tail -1`, actual commit date: `date`"

This will commit with the change-date of the last-changed *.cpp-file, and a nice explaining message of the actual commit date.

link|improve this answer
feedback

May I ask why you would want to do this?

If you don't want to change your clock, I would suggest creating a script to do the commit and use the Windows Scheduler (or whatever equivalent for your OS) to run the script at the time you want the commit to be.

link|improve this answer
Good idea. In Unix like systems you could use the "at" command (see "man at" for usage). – Pat Notz Dec 15 '08 at 4:12
feedback

I can't imagine this is a normal use-case. One way to do it would be to temporarily set the time on your local computer to a future date and perform the commit, but that is disruptive and may cause problems with other tools that read the repository and unexpectedly see a future date in a commit.

You may want to reevaluate the reasons that you need to do this.

link|improve this answer
feedback

Did you try changing your clock? =)

I'd think that should work locally, but not sure what'd happen when others go to merge.

link|improve this answer
Timestamps aren't relevant to merges. – Dustin Dec 15 '08 at 4:31
feedback

Your Answer

 
or
required, but never shown