How can one change the timestamp of an old commit in Git? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:15:08Z http://stackoverflow.com/feeds/question/454734 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/454734/how-can-one-change-the-timestamp-of-an-old-commit-in-git 3 How can one change the timestamp of an old commit in Git? sjbach 2009-01-18T06:13:46Z 2009-01-19T02:06:35Z <p>The answers to <a href="http://stackoverflow.com/questions/179123/how-do-i-edit-an-incorrect-commit-message-in-git">this question</a> describe a way to amend previous commit messages that haven't yet been pushed upstream. The new messages inherit the timestamps of the original commits. This seems logical, but is there a way to also re-set the times?</p> http://stackoverflow.com/questions/454734/how-can-one-change-the-timestamp-of-an-old-commit-in-git/454741#454741 0 Answer by Greg Hewgill for How can one change the timestamp of an old commit in Git? Greg Hewgill 2009-01-18T06:33:32Z 2009-01-18T06:33:32Z <p>I had an idea to use <code>git rebase -i</code> with <code>GIT_AUTHOR_DATE</code> when editing an old commit, but it looks as though that doesn't work. What might be going on is that whatever the <code>git commit --amend</code> does to preserve the original commit date overrides whatever might be in <code>GIT_AUTHOR_DATE</code>.</p> http://stackoverflow.com/questions/454734/how-can-one-change-the-timestamp-of-an-old-commit-in-git/454750#454750 8 Answer by Dustin for How can one change the timestamp of an old commit in Git? Dustin 2009-01-18T06:48:07Z 2009-01-19T02:06:35Z <p>use git filter-branch with an env filter that sets GIT_AUTHOR_DATE and GIT_COMMITTER_DATE for the specific hash of the commit you're looking to fix.</p> <p>This will invalidate that and all future hashes.</p> <p><strong>Edited for example</strong></p> <p>If you wanted to change the dates of commit <code>119f9ecf58069b265ab22f1f97d2b648faf932e0</code>, you could do so with something like this:</p> <pre><code>git filter-branch --env-filter \ 'if [ $GIT_COMMIT = 119f9ecf58069b265ab22f1f97d2b648faf932e0 ] then export GIT_AUTHOR_DATE="Fri Jan 2 21:38:53 2009 -0800" export GIT_COMMITTER_DATE="Sat May 19 01:01:01 2007 -0700" fi' </code></pre>