在公司下載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