I want to change the author of one specific commit in the history. It\'s not the last commit.
I know about this question - How do I change the author of a commit in
Reset your email to the config globally:
git config --global user.email example@email.com
Now reset the author of your commit without edit required:
git commit --amend --reset-author --no-edit