我正在尝试从命令行将项目推送到远程存储库。
在本地目录中,我点击了:
$ git push
并获得以下错误:
remote:拒绝对username2的username1 / repo.git权限。
严重:无法访问“ https://github.com/username1/repo.git/ ”:
请求的URL返回错误:403
username1
我的github帐户用户名托管我要推送到的存储库在哪里,并且username2
是我以前在此计算机上使用的旧帐户。
我在Macbook Air上使用OS X Yosemite(v10.10.5)。而且我更喜欢使用https而不是ssh。
我该如何更新到username1
才能成功推送到我的遥控器?
编辑:明确地说,我不是在谈论简单地编辑config user
对象,例如,
$ git config --global user.name "Billy Everyteen"
$ git config --global user.email "billyeveryteen@example.com"
它们与身份验证无关。我的问题涉及写入我的远程存储库所必需的用户身份验证。