2012-04-16 11 views
5

मुझे आरओआर में बंडल इंस्टॉल का उपयोग करते समय यह त्रुटि मिलती है।गिट से लिंकिन स्थापित करते समय गिट त्रुटि को हल करने के लिए: //github.com/pengwynn/linkedin.git?

लाई जा रही है 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:/linkedin/linke dinfrongit विफल रहा है।

मैं विंडोज का उपयोग कर रहा हूं।

उत्तर

5

क्या आप पोर्ट 9418 पर फ़ायरवॉल अवरुद्ध कनेक्शन के पीछे हैं? शायद आप इसे http प्रोटोकॉल के साथ आज़मा सकते हैं?

git clone https://github.com/pengwynn/linkedin.git 
2
Set proxy using git config command in the command prompt with 
the following two commands: 
    git config --global http.proxy http://username:[email protected]:port 
    git config --global https.proxy http://username:[email protected]: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 
संबंधित मुद्दे