我配置了一个全局git用户,但是想为一个git项目使用不同的用户。
在该项目中,我使用git config --local user.name "localuser"
和git config --local user.email "[email protected]"
来设置本地项目的用户和电子邮件。
但是,当我尝试在github上推送到我的遥控器时,我收到此错误:
remote: Permission to localuser/repo.git denied to globaluser.
fatal: unable to access 'https://github.com/localuser/repo.git/': The requested URL returned error: 403
以下是一些可能有助于诊断的输出:
git remote -v
:
github https://github.com/localuser/repo.git (fetch)
github https://github.com/localuser/repo.git (push)
git config --list
:
user.name=globaluser
[email protected]
...
git config --local --list
:
user.name=localuser
[email protected]
...
git config user.name
:
localuser
我已经提交了我的更改并收到了我的全局用户拒绝的权限。随后设置本地用户什么也没做,尽管git config user.name
报告了正确的本地用户。
有用的是(courtesy of this google groups thread):
git commit --amend --reset-author
我认为原定作者所附的承诺变更。
如果您使用GitHub处理OSX,则可能是证书问题。您的GitHub证书会记住您的user.name和user.email,它会覆盖本地配置设置。解决问题的一种方法是转到您的钥匙串并删除GitHub证书。
试过很多方法,花了很多时间但没有任何效果。我不得不最后清除所有用户:
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper
我现在要求再次推送我的GitHub凭据,并且可以提供正确的用户ID和密码:)
如果使用Windows,那么也可以通过访问Control Panel\User Accounts\Credential Manager
删除它