我在Github网站上创建了一个新的Github存储库,并git将其克隆到我的本地计算机上。 在本地进行一些更改后,我提交了更改并尝试将其推送到远程存储库,但是失败,并显示以下消息:
Learn.NET git:(master) git push
ERROR: Permission to GITHUB_ACCOUNT1/Learn.NET.git denied to GITHUB_ACCOUNT2.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
上下文: 我有两个Github帐户,我在GITHUB_ACCOUNT1上创建了此存储库,但不知何故它试图使用我的GITHUB_ACCOUNT2帐户凭据进行推送,如何使自己git在该目录中可推送?
我已经在本地计算机上配置了ssh。
答案 0 :(得分:0)
我自己整理了。
此命令起到了神奇的作用:
git remote set-url origin https://github.com/GITHUB_ACCOUNT1/Learn.NET.git
此后,我就可以将其git push到遥控器了。