So looking at How can one change the timestamp of an old commit in Git?, it's easy to change the commit date in git using something like git commit --amend --date="Wed Feb 16 14:00 2011 +0100"
Am I correct in noticing that the timestamps of the commit history in ./git/logs/refs/heads don't change though? So even if you follow the aforementioned stackoverflow post to change the commit date, the timestamp shown in the log for that commit won't match.
Is there an easy way to make them match and how?