本文介绍了git推后更改git作者身份的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我已经将它提交到上游存储库后,如何更改提交的作者
必须修改本地存储库中的提交( git commit --amend --author =New Author Name< [email protected]>
), git push -f
更改(重写历史记录一旦推到上游,通常是一种不好的做法)。 How do I change the author of my commit after I've already pushed it to the upstream repository
解决方案
You will have to amend the commit ( git commit --amend --author="New Author Name <[email protected]>"
) on your local repository and force push- git push -f
the change ( rewriting history is generally a bad practice once you have pushed upstream ).
这篇关于git推后更改git作者身份的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!