我正在尝试分析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
我感谢任何帮助让这个(看似简单的)步骤发挥作用。
答案 0 :(得分:0)
您需要将repo分叉,将其放入您的个人GitHub存储库中,然后克隆您个人存储库中的版本。这是关于分叉和克隆的GitHub文章:https://help.github.com/articles/fork-a-repo
以下是高级别的步骤:
$ 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
实际上并没有分叉,但这对我有用。