2015-12-21 86 views
1

我想從一個打開的git倉庫克隆一個項目。我有這個錯誤。我試圖找出原因,發現that。運行brew install git --with-brewed-curl --with-brewed-openssl得到這個:Git克隆失敗,出現「SSLRead()返回錯誤-980641」

curl: (56) SSLRead() return error -9806 
Error: Failed to download resource "git" 

的git --version:2.4.9(蘋果的Git-60 捲曲-V:捲曲7.43.0`

+0

該錯誤消息來自darwinssl提供的捲曲,而不是OpenSSL,它使得它聽起來像你正在嘗試使用的? –

+0

使用Tunnel Bear成功克隆了項目,但仍然不知道這個錯誤是什麼原因... – DanDance

+0

你可能還需要用''curl'安裝' - with-openssl'選項通過brew。它幫助我在OS X 10.11(全新安裝)上。 – werediver

回答

0

你可以使用

$ brew remove git 
$ brew remove curl 

$ brew install openssl 
$ brew install --with-openssl curl 
$ brew install --with-brewed-curl --with-brewed-openssl git