2

Windows(windows8 x64)にoctopressを正常にインストールしてから、wenliangcan.github.comという名前のリポジトリを作成し、 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 が正しいことを確認してください。具体的な例として、 「 No such file or directory - git ls-files— WINDOWS 」を参照してください。

もう 1 つの問題は、Windows 7 での ruby​​ バージョンの問題 (1.9.2 は動作するが、1.9.3 は動作しない) である可能性があります (「Windows 7 でのインストール - 「rake db:migrate」を実行したときのセグメンテーション エラー」を参照) 。

于 2012-09-13T07:12:13.147 に答える