I want change author at one specific commit in history. It's not last commit.
I know about this question - How do I change the author of a commit in git?
But I thinking about something, where I identify commit by hash or short-hash.
|
I want change author at one specific commit in history. It's not last commit. I know about this question - How do I change the author of a commit in git? But I thinking about something, where I identify commit by hash or short-hash. |
|||
|
|
|
Interactive rebase off of a point earlier in the history than the commit you need to modify (
For example, if your commit history is
|
|||||||||||||||||||||
|
|
The answers in the question to which you linked are good answers and cover your situation (the other question is more general since it involves rewriting multiple commits). As an excuse to try out git filter-branch, I wrote a script to rewrite the Author Name and/or Author Email for a given commit:
|
|||||
|