Git Clone Fails with sslRead() error on OS X Yosemite

前端 未结 4 2015
面向向阳花
面向向阳花 2020-12-09 04:40

I\'m currently on OS X Yosemite 10.10.3, and trying to git clone an existing repo which works fine on Windows. I\'ve tried a combo of installing git through homebrew with c

4条回答
  •  无人及你
    2020-12-09 05:12

    Javabrett's link got me to the answer, it revolves around Yosemite using an incorrect SSL dependency, which Git ends up using.

    Installing Git via homebrew with these flags works:

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

    Or:

    brew reinstall git --with-brewed-curl --with-brewed-openssl
    

提交回复
热议问题