How to update git commit author, but keep original date when amending?
07:24 23 Dec 2016

If the commits are already made and pushed to the repository, and if want to change an author for some particular commit I can do it like this:

git commit --amend --reset-author

But, that will change the original committed date.

How can I reset author, but keep the original committer date?

git