我正在尝试推送回购邮件,终端上会抛出以下错误。
fatal: remote error:
You can't push to git://github.com/<username>/<repoName>
Use https://github.com/<username>/<repoName>
我在几天前做了一些配置更改,我不记得我做了什么我已经改变了与此https://
和git://
相关的内容,但我不知道如何才能做到这一点事情再次发挥作用。
答案 0 :(得分:1)
更新,因为我在...之前搞砸了命令
您可能更改的是远程URL。解决它
git remote <remote-name> set-url https://github.com/<username>/<repoName>
应该这样做。 (对于<remote-name>
可能是origin
。我假设您知道<username>
和<repoName>
的真实值...)