Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在为我打开的拉取请求合并提交后,有没有办法更改提交的作者姓名。我知道修改提交可以更改作者姓名。
但是合并拉取请求后如何处理这种情况?
您将不得不重写该提交,从而导致已经看到该提交的任何人发生冲突。因此,一旦发布,通常不鼓励重写(或变基)提交。
话虽如此,您可以git commit --amend通过首先设置GIT_AUTHOR_NAME环境变量来轻松更改作者。确保您之后重置环境变量(或仅在本地为单个修改命令定义它),否则所有新提交也将采用该作者姓名。
git commit --amend
GIT_AUTHOR_NAME