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?
|
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
|
|||||||||||||
|
|
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:
Afterwards you continue your interactive rebase. UPDATE (in response to the comment of studgeek): to change the commit date instead of the author 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. |
|||||||||||||||||||||
|
|
A better way to handle all of these suggestions in one command is
This will set the commit and author date to "right now" |
|||||
|
git rebase -iwithGIT_AUTHOR_DATEwhen editing an old commit, but it looks as though that doesn't work. What might be going on is that whatever thegit commit --amenddoes to preserve the original commit date overrides whatever might be inGIT_AUTHOR_DATE. – Greg Hewgill Jan 18 '09 at 6:33