If squashing multiple branches how can I get the message date to get updated?
e.g. I just spent the last hour trying to find a copy of the code in order to verify what I have is up to date because the date on the last message is from 2 weeks ago when I know yesterday I had squashed a small fix into the branch.
Is it possible to get the date updated when squashing?
Based on an old post from 2012 it looks like this is a close solution:
git commit --amend --reset-author
but I don't want to have to be prompted and I don't want to have to specify manually the date.
git commit --amend --date="Wed Apr 15 13:00 2037 -0700"
How can I make it automatically set the date to now as I don't want to have to enter the date manually?