用于Rails 4的分叉导航教程sample_app

时间:2013-07-31 01:19:34

标签: github ruby-on-rails-4 railstutorial.org

我正在尝试分析Michael Hartl的sample_app_rails_4(https://github.com/railstutorial/sample_app_rails_4)。我一直收到错误消息:

  

'致命:无法从远程存储库读取。请确保你   拥有正确的访问权限,存储库存在'

输入以下命令后

$ cd /tmp
$ git clone git@github.com:railstutorial/sample_app_rails_4.git

我感谢任何帮助让这个(看似简单的)步骤发挥作用。

2 个答案:

答案 0 :(得分:0)

您需要将repo分叉,将其放入您的个人GitHub存储库中,然后克隆您个人存储库中的版本。这是关于分叉和克隆的GitHub文章:https://help.github.com/articles/fork-a-repo

以下是高级别的步骤:

  1. 转到Hartl的回购并点击fork。这将在您的GitHub帐户中复制项目。
  2. 从您的个人帐户克隆回购邮件:
  3. $ git clone git@github.com:your_github_usernamesample_app_rails_4.git

答案 1 :(得分:0)

看起来SSH不是该存储库的选项。试试

git clone https://github.com/railstutorial/sample_app_rails_4.git

实际上并没有分叉,但这对我有用。