3

我克隆了我的 github。

而不是打开几个文件,改变了几个code,现在我想将此代码发布到我的 githu.com/user/repo.git 存储库。但是当我这样做时..

root@linux# cd myRepo/
root@linux# git commit -a -m "Updated footer"
root@linux# git push origin master.

我收到以下错误:-

fatal: remote error: 
  You can't push to git://github.com/user/repo.git
  Use https://github.com/user/repo.git

请不要告诉我到谷歌的路径,我已经尝试过了,失败后,我在这里写它们。

4

1 回答 1

5

您使用只读URL克隆了存储库。将您的源远程的 URL 更改为错误消息中提供给您的读写 URL:

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

然后再次尝试推动。(此时您可能需要提供您的 GitHub 凭据。)

于 2013-09-09T17:09:41.130 回答