我在另一个作者git commit as different user without email / or only email下检查了有关提交的问题
如何在另一个登录名下也推送到远程仓库。我做:

git commit --author="notMe" -m "whatever"
git push https://<remote-repo>
Username for 'https://github.com': notMe
Password for 'https://[email protected]': <notMe's password>

但是结果是我得到了:
我如何像其他作者一样提交和 push ?

UPD:我尝试了git config user.name "notMe",结果是:

这几乎是我想要的,但是为什么我的头像仍在这里?

最佳答案

您需要同时指定名称和提交作者的电子邮件,以完全消除当前帐户的痕迹。

10-07 17:15