How to solve git error when installing linkedin from git: //github.com/pengwynn/linkedin.git?

I get this error when using package installation in ROR.

Extracting git: //github.com/pengwynn/linkedin.git fatal: Unable to view github.com (port 9418) (Unknown to this node). Git error: command 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-hardlinksin directory C: / linkedin / linke dinfrongit failed.

I use windows.

+5
source share
2 answers

Are you behind a firewall blocking connections on port 9418? Perhaps you can try the http protocol?

git clone https://github.com/pengwynn/linkedin.git
+5
source
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
+2
source

All Articles