Git Bash:远程错误:您无法推送到git://github.com/

时间:2017-03-11 13:35:11

标签: git git-push

请帮助我,我该如何解决此错误?

3
3
1
1
1
1

3 个答案:

答案 0 :(得分:26)

使用HTTPS或SSH URL。而不是git://github.com/user/repo.git使用其中一个:

  • https://github.com/user/repo.git
  • git@github.com:user/repo.git

您可以在克隆中更改它:

git remote set-url origin <THE-URL-HERE>

答案 1 :(得分:5)

我有同样的错误,这对我有用,我在这里找到:https://coderwall.com/p/7begkw/fatal-remote-error-you-can-t-push-to-git

git remote rm origin 
git remote add origin git@github.com:user/repo.git
git push origin master

答案 2 :(得分:0)

来自github的错误消息颇具误导性。即使用户可以更轻松地通过ssh密钥进行身份验证,也建议使用https://。 ssh的(很有希望的)替代方案是这样的:

git remote set-url origin ssh://git@github.com/user/repo.git