在公司下载github源码遇到问题:
git clone https://github.com/square/retrofit.git
遇到问题
Clone failed: unable to access 'https://github.com/square/retrofit.git/': Unknown SSL protocol error in connection to github.com:443
通过配置代理解决:
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:8080
通过git config --list可以查看配置的代理