git commit - setting timestamps into the future - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:47:55Z http://stackoverflow.com/feeds/question/367262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/367262/git-commit-setting-timestamps-into-the-future 4 git commit - setting timestamps into the future Git-noob 2008-12-15T01:24:11Z 2009-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#367320 0 Answer by Greg Hewgill for git commit - setting timestamps into the future Greg Hewgill 2008-12-15T02:11:38Z 2008-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 -1 Answer by Kieveli for git commit - setting timestamps into the future Kieveli 2008-12-15T02:28:29Z 2008-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#367419 0 Answer by msingleton for git commit - setting timestamps into the future msingleton 2008-12-15T03:41:01Z 2008-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#367475 8 Answer by Dustin for git commit - setting timestamps into the future Dustin 2008-12-15T04:30:00Z 2008-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 &lt;dustin@spy.net&gt; 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#1474183 0 Answer by Hugo for git commit - setting timestamps into the future Hugo 2009-09-24T21:13:24Z 2009-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>