git commit - setting timestamps into the future - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T15:47:55Zhttp://stackoverflow.com/feeds/question/367262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future4git commit - setting timestamps into the futureGit-noob2008-12-15T01:24:11Z2009-09-24T21:13:24Z
<p>Hi,</p>
<p>I need to make some commits using Git but I would like the timestamp in git-log to be in the future.</p>
<p>How can I do a commit in git that causes a future timestamp to register in the git-log?</p>
<p>Thanks</p>
<p>Git-noob</p>
http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future/367320#3673200Answer by Greg Hewgill for git commit - setting timestamps into the futureGreg Hewgill2008-12-15T02:11:38Z2008-12-15T02:11:38Z<p>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.</p>
<p>You may want to reevaluate the reasons that you need to do this.</p>
http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future/367347#367347-1Answer by Kieveli for git commit - setting timestamps into the futureKieveli2008-12-15T02:28:29Z2008-12-15T02:28:29Z<p>Did you try changing your clock? =)</p>
<p>I'd think that should work locally, but not sure what'd happen when others go to merge.</p>
http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future/367419#3674190Answer by msingleton for git commit - setting timestamps into the futuremsingleton2008-12-15T03:41:01Z2008-12-15T03:41:01Z<p>May I ask why you would want to do this? </p>
<p>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.</p>
http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future/367475#3674758Answer by Dustin for git commit - setting timestamps into the futureDustin2008-12-15T04:30:00Z2008-12-15T04:30:00Z<p>You should wait a bit.</p>
<p>Or you can do this:</p>
<pre><code>/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!
</code></pre>
<p><strong>Note</strong> that there's both an author date and a committer date, so be sure to set the right one (or both).</p>
http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future/1474183#14741830Answer by Hugo for git commit - setting timestamps into the futureHugo2009-09-24T21:13:24Z2009-09-24T21:13:24Z<p>If you want to retain an actual change-date when adding a project to git, you can do so with</p>
<pre><code>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`"
</code></pre>
<p>This will commit with the change-date of the last-changed *.cpp-file, and a nice explaining message of the actual commit date.</p>