请确保您拥有正确的访问权限,并且存储库存在github

时间:2018-01-25 18:00:21

标签: ruby-on-rails git github ssh

当我尝试将我的更改推送到我的github repo时,我收到错误:

  

致命:'git@github.comRedHoodJT1988/hello_app.git'似乎不是一个git存储库   致命:无法从远程存储库中读取。

请确保您拥有正确的访问权限并且存储库已存在。

我查看了文档并完成了以下步骤:https://help.github.com/articles/error-permission-denied-publickey/

除了查看其他网站,没有任何工作。我能够连接到ssh,因为我收到了消息:嗨RedHoodJT1988 ......

我不知道接下来要做什么。我没有使用云IDE我在macbook pro上如果有帮助的话。另外,不确定是否重要,我正在开发Ruby on Rails应用程序。

2 个答案:

答案 0 :(得分:2)

您在地址中遗漏了一个冒号,需要更改您的远程命名来源

git remote remove origin
git remote add origin https://github.com/RedHoodJT1988/hello_app.git

答案 1 :(得分:0)

由于它是SSH URL,因此不应涉及任何https:

{{1}}