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