I just import my porject from svn to git
So i plan to do some cleanup to my commit history
Let say i have this kind of commit history (all already been push)
Commit Message Date
..
ffa7e08 change error message on isfileuploade.. 2012-06-04
85a467f change error message on extension.. 2012-05-24
49f3a89 add exit(), on execute() method .. 2012-05-09
af68b2b add method getFileName 2012-05-04
..
How can i change the commit message for 49f3a89
without changing it date?
If i do git rebase -i af68b2b
, i successfully change the commit message and apparently it old commit date too..
Is there a way to remedy this?