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
Changing Your Committer Name & Email Globally:
$ git config --global user.name "John Doe"
$ git config --global user.email "john@doe.org"
Changing Your Committer Name & Email per Repository:
$ git config user.name "John Doe"
$ git config user.email "john@doe.org"
Changing the Author Information Just for the Next Commit:
$ git commit --author="John Doe "
Hint: For other situation and read more information read the post reference.