2

我在我的 windows(windows8 x64) 上成功安装了 octopress,然后我创建了一个名为wenliangcan.github.com的 repo ,并尝试在 github 上部署一个博客。

当我键入命令rake setup_github_pages并输入存储库 url时,它给了我一个错误:

rake aborted!
No such file or directory - git remote -v

在输入存储库 url之前,它给了我一个这样的例子:

Enter the read/write url for your repository
(For example, 'git@github.com:your_username/your_username.github.com)

虽然一些第三方教程的例子像这种形式:

git@github.com:your_username/your_username.github.com.git

我都试过了,但它给了我同样的错误。

下面是 CMD 的截图:

在此处输入图像描述

截图内容:

D:\Profiles\GitHub\Octopress>rake setup_github_pages
Enter the read/write url for your repository
(For example, 'git@github.com:your_username/your_username.github.com)
Repository url: git@github.com:wenLiangcan/wenliangcan.github.com.git
rake aborted!
No such file or directory - git remote -v

Tasks: TOP => setup_github_pages
(See full trace by running task with --trace)

D:\Profiles\GitHub\Octopress>rake setup_github_pages
Enter the read/write url for your repository
(For example, 'git@github.com:your_username/your_username.github.com)
Repository url: git@github.com:wenLiangcan/wenliangcan.github.com
rake aborted!
No such file or directory - git remote -v

Tasks: TOP => setup_github_pages
(See full trace by running task with --trace)

我该如何解决这个问题?

谢谢!

4

1 回答 1

2
 No such file or directory - git remote -v

这意味着您的 ruby​​ 脚本在当前执行中找不到 git PATH(有点像在这个问题中),或者 rake 脚本以某种方式强制设置自己的 PATH。
所以在启动 rake 命令时要确保 PATH 是正确的:具体请看“没有这样的文件或目录git ls-files---WINDOWS ”。

另一个问题可能是 Window7 上的 ruby​​ 版本问题(1.9.2 工作,1.9.3 不工作)(请参阅“在 Windows 7 上安装 - 运行“rake db:migrate”时出现分段错误”)

于 2012-09-13T07:12:13.147 回答