`git push`显示错误。无法推送到`git://`。试试`https://`

时间:2016-12-27 19:28:35

标签: git github

我正在尝试推送回购邮件,终端上会抛出以下错误。

fatal: remote error: 
  You can't push to git://github.com/<username>/<repoName>
  Use https://github.com/<username>/<repoName>

我在几天前做了一些配置更改,我不记得我做了什么我已经改变了与此https://git://相关的内容,但我不知道如何才能做到这一点事情再次发挥作用。

1 个答案:

答案 0 :(得分:1)

更新,因为我在...之前搞砸了命令

您可能更改的是远程URL。解决它

git remote <remote-name> set-url https://github.com/<username>/<repoName>

应该这样做。 (对于<remote-name>可能是origin。我假设您知道<username><repoName>的真实值...)