How to change the commit author for one specific commit?

后端 未结 19 2159
没有蜡笔的小新
没有蜡笔的小新 2020-11-22 05:15

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

19条回答
  •  萌比男神i
    2020-11-22 05:44

    • 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

提交回复
热议问题