5

在 ROR 中使用 bundle install 时出现此错误。

获取 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/linke dinfrongit 中的命令失败.

我正在使用窗户。

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 回答