无法 git 推送到 Github
Cannot git push to Github
我在 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 上创建了这个 repo,但不知何故它试图使用我的 GITHUB_ACCOUNT2 帐户凭据来推送,我怎样才能让自己 git 可推送这个目录?
我已经在本地机器上配置了 ssh。
我自己整理的
这个命令很神奇:
git remote set-url origin https://github.com/GITHUB_ACCOUNT1/Learn.NET.git
在此之后,我能够git推送到远程。
我在 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 上创建了这个 repo,但不知何故它试图使用我的 GITHUB_ACCOUNT2 帐户凭据来推送,我怎样才能让自己 git 可推送这个目录?
我已经在本地机器上配置了 ssh。
我自己整理的
这个命令很神奇:
git remote set-url origin https://github.com/GITHUB_ACCOUNT1/Learn.NET.git
在此之后,我能够git推送到远程。