git push faid并告诉我用户名是错误的

问题描述 投票:0回答:1
remote: Permission to web-display/test.git denied to webdaniu.
fatal: unable to access 'https://github.com/web-display/test.git/': The       requested URL returned error: 403

我的user.name是“web-dispaly”,但它告诉我webdaniu,我想删除webdaniu或做某事 我添加了密钥 所以我该怎么做? 这是好的,但user.name,我已经重置但没有工作。

git github
1个回答
0
投票

它应该通过设置user.name来修复全局或当前回购

$ git config –-global user.name NEWUSER
$ git config user.name NEWUSER

但如果没有那么

您可能需要通过从密码部分下的Keychain Access应用程序中删除与GitHub关联的OLDUSER来申请。然后push命令成功。

$ git push -u origin master

reference

© www.soinside.com 2019 - 2024. All rights reserved.