Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The answers to this question 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?

share|improve this question
I had an idea to use git rebase -i with GIT_AUTHOR_DATE when editing an old commit, but it looks as though that doesn't work. What might be going on is that whatever the git commit --amend does to preserve the original commit date overrides whatever might be in GIT_AUTHOR_DATE. – Greg Hewgill Jan 18 '09 at 6:33

3 Answers

up vote 69 down vote accepted

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.

This will invalidate that and all future hashes.

Edited for example

If you wanted to change the dates of commit 119f9ecf58069b265ab22f1f97d2b648faf932e0, you could do so with something like this:

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'
share|improve this answer
3  
Can you provide a specific example? – 1800 INFORMATION Jan 18 '09 at 8:06
What's the date format? – Hengjie Feb 8 at 21:44
See "DATE FORMATS" kernel.org/pub/software/scm/git/docs/git-commit.html – Dustin Mar 14 at 21:31
Hi, how is it that I get a bad variable name error? – Gra Mar 17 at 20:01
this is quite cool! +1 – George Profenza Apr 3 at 13:20

You can do an interactive rebase and choose edit for the commit whose date you would like to alter. When the rebase process stops for amending the commit you type in for instance:

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

Afterwards you continue your interactive rebase.

UPDATE (in response to the comment of studgeek): to change the commit date instead of the author date:

export GIT_COMMITTER_DATE="Wed Feb 16 14:00 2011 +0100"
git commit --amend

export GIT_COMMITTER_DATE=""

The lines above set an environment variable GIT_COMMITTER_DATE which is used in amend commit. The last line wipes that variable otherwise all your following commits will have that commit date. Everything is tested in Git Bash.

share|improve this answer
3  
Note this only changes the author date, not the commit date. – studgeek Aug 29 '11 at 12:09
1  
--date="now" works, too. – nschum Sep 10 '11 at 18:19
4  
@nschum --date="" and --data"non-date-text" all yield the same, taking the date of now. – Paul Pladijs Nov 18 '11 at 9:34
2  
on git version 1.7.7.1 using --date="now" gives fatal: invalid date format: now – Aragorn Jan 10 '12 at 17:58
1  
Instead of export GIT_COMMITTER_DATE="", try unset GIT_COMMITTER_DATE. – mehaase May 30 '12 at 13:39
show 2 more comments

A better way to handle all of these suggestions in one command is

GIT_COMMITTER_DATE="`date`" git commit --amend --date "`date`"

This will set the commit and author date to "right now"

share|improve this answer
2  
Simple and worked perfectly! Thanks Luke – Gromix Jun 8 '12 at 17:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.