2013-04-23 102 views
4

我知道這個問題並不新鮮,我一直在尋找答案,但直到現在沒有任何工作爲我。錯誤:無法連接到github.com:8080;拒絕連接

的問題是,每一次我嘗試git clonegit pull命令,我收到以下錯誤:

error: Failed connect to github.com:8080; Connection refused while accessing https://github.com/mxcl/homebrew.git/info/refs?service=git-upload-pack 
fatal: HTTP request failed 

(這裏其https://github.com/mxcl/homebrew.git/info/refs?service=git-upload-pack,但它僅僅是一個例子,我有這個問題蒙山的所有URL)

+1

端口8080通常不以https相關聯。 8443是我期望在這裏看到的,如果它是443以外的東西。 – 2013-04-23 11:20:12

+0

試試'git:// github.com/mxcl/homebrew.git'? – 2013-04-23 11:21:35

+0

其實我試過「git clone git://github.com/mxcl/homebrew.git」,它的工作原理是「git clone https://github.com/mxcl/homebrew.git/info/refs?service = git-上傳包「不斷返回相同的錯誤...任何想法問題可能來自哪裏? – lgerard 2013-04-23 11:45:50

回答

4

檢查您是否有git http.proxyhttps.proxy配置集,並取消設置。請參閱pull command error : Failed connect to github.com:8080

+0

我已經試過了。這很奇怪,因爲即使我遵循這個流程(取消設置http和https),它仍會返回一個http.proxy設置(kuzh.polytechnique.fr:8080),而不會返回https.proxy(這應該是正確的,否?) – lgerard 2013-04-23 11:54:34

+0

謝謝!我忘了我最近配置git通過代理工作。 :P – Sheharyar 2014-03-03 15:25:44

0

嘗試在推或拉之前設置公鑰/私鑰rsa密鑰對。 //網址:

ssh-keygen -t rsa -C "[email protected]" 

enter image description here

相關問題