5

RORでバンドルインストールを使用しているときにこのエラーが発生します。

git://github.com/pengwynn/linkedin.gitをフェッチしています致命的:github.com(ポート9418)を検索できません(そのようなホストは不明です。)Gitエラー:git clone "git://github.com/pengwynn/linkedin.git" "C:/RailsInstaller/Ruby1.8.7/lib/ruby/gems/1.8/ca che/bundler/git/linkedin-3e3919d62b37a1f8879ade6b51b3eeb032fc8973" --bare --no-hardlinksディレクトリC:/ LinkedIn /linkedinfrongitのコマンドが失敗しました。

私はウィンドウズを使用しています。

4

2 に答える 2

5

ポート 9418 で接続をブロックするファイアウォールの背後にいますか? おそらく、http プロトコルで試してみることができますか?

git clone https://github.com/pengwynn/linkedin.git
于 2012-04-16T07:16:59.153 に答える
2
Set proxy using git config command in the command prompt with
the following two commands: 
    git config --global http.proxy http://username:password@host:port 
    git config --global https.proxy http://username:password@host:port

In command like:
    git clone git://github.com/saasbook/hw2_rottenpotatoes.git
Replace replace git:// with https://.
    git clone https://github.com/saasbook/hw2_rottenpotatoes.git
于 2013-01-30T10:14:59.813 に答える