将错误的用户名提交到github

将错误的用户名提交到github

本文介绍了将错误的用户名提交到github的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我使用错误的本地凭据(用户名和密码)提交给github,是否可以更改github上的提交者名称?如果您有两个git帐户,则可能会发生此问题!顺便说一句,我不问如何重新配置​​您的本地git帐户.

If I committed to github with a wrong local credentials (username and password), will it be possible to change the committer name on github? This issue can happen if you have two git accounts! By the way I'n not asking how to reconfigure your local git account.

推荐答案

1-使用

更改用户名:git config username.user <username>

更改电子邮件:git config username.email <email>

2-运行此命令git commit --amend -C HEAD --reset-author

3-运行此命令git push --force

这将在上一次提交中更改另一个.

This will change the other in the last commit.

这篇关于将错误的用户名提交到github的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 17:45