Quando tento clonar / extrair / extrair de um repositório git via https de um sistema Mac, recebo um erro:
error: RPC failed; result=56, HTTP code = 200
fatal: The remote end hung up unexpectedly
Depois de aumentar o nível de registro, recebo o seguinte erro relacionado a SSL:
> POST /some/repository.git/git-upload-pack HTTP/1.1
Host: somehost.madeup.now
Authorization: Basic someAuth=
User-Agent: git/2.4.9 (Apple Git-60)
Accept-Encoding: gzip
Content-Type: application/x-git-upload-pack-request
Accept: application/x-git-upload-pack-result
Content-Encoding: gzip
Content-Length: 613
* upload completely sent off: 613 out of 613 bytes
< HTTP/1.1 200 OK
< Date: Thu, 10 Mar 2016 09:36:23 GMT
< Server: nginx
< Content-Type: application/x-git-upload-pack-result
< Status: 200 OK
< Cache-Control: no-cache
< X-Request-Id: 531bdbc2-cc8d-407b-961a-f8b7dcd45baf
< X-Runtime: 0.138041
< Connection: close
<
* SSLRead() return error -9806
Encontrei um caso muito semelhante em Stackoverflow , e eu segui os passos da resposta aceita, o que significa atualizar git, curl e openssl com homebrew para as versões mais recentes:
git: 2.7.2
curl: 7.47.1
openssl: 1.0.2g
No meu caso, isso não ajudou. Eu continuo recebendo os mesmos erros.
Alguma idéia de qual poderia ser o motivo dessa falha?