【发布时间】:2016-09-28 21:24:29
【问题描述】:
在 Ruby on Rails 教程一书中,Micheal Hartl 建议使用 Cloud9 https://c9.io 云 IDE。我创建了一个 Bitbucket 帐户,在 IDE 上设置了 Git,并在 Cloud9 上安装了 Rails。
git push -u origin --all and getting error message conq: Repository does not exist.
fatal: could not read from remote repository
please make sure you have the correct access rights and the repository exist.
【问题讨论】:
-
教程前面的那一行可能没有正确执行:
git remote add origin git@bitbucket.org:<username>/hello_app.git。正如@Tito 提到的,您可以登录您的 bitbucket 帐户并在那里创建存储库(或至少检查它是否已创建)。 -
谢谢。我看到 repo 是在 bitbucket 上创建的。问题是当我尝试将 rails hello.app 项目推送到 bit bucket 时。使用 git push -u origin --all
标签: ruby-on-rails