I tried to change the message of a commit.
git rebase -i HEAD~5
I've tagged the commit with reword and edited message in second window
git push
git pull
git reset --hard HEAD~1
git push -f
The last two steps remove the duplicate of commits.
Now is all fine but the commit is "authored 6 days ago" but listed in todays date.
But I would like to have them on their original date.
See here. Commits from Aug 03, 2013
should be in Jul 28, 2013
.