0

我正在尝试分叉 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

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

4

2 回答 2

0

你需要 fork 存储库,在你的个人 GitHub 存储库中获取它,然后克隆你个人存储库中的版本。这是一篇关于分叉和克隆的 GitHub 文章:https ://help.github.com/articles/fork-a-repo

以下是高级别的步骤:

  1. 转到 Hartl 的 repo 并单击 fork。这会将项目复制到您的 GitHub 帐户中。
  2. 从您的个人帐户克隆 repo:

$ git clone git@github.com:your_github_usernamesample_app_rails_4.git

于 2013-07-31T01:27:44.293 回答
0

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

git 克隆https://github.com/railstutorial/sample_app_rails_4.git

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

于 2013-07-31T01:28:39.520 回答