一。error: SSL: can't load CA certificate file
原因是你设置了SSL证书,但是sourcetree找不到这个证书,估计是你之前执行了以下命令:
git config --global http.sslVerify true
git config --global http.sslCAinfo /etc/ssl/certs/ca-certificates.crt
需要这样取消
git config --global --unset http.sslCAinfo
git config --global http.sslVerify false
二。Failed to connect to proxy.com port 1234
原因是你设置了代理服务器,但是代理服务器错误连接不上,
如:
git config --global https.proxyhttp://192.168.85.254:8080
git config --global https.proxyhttps://192.168.85.254:8080
用以下方法取消代理服务器
先查询你设置了什么代理服务器
git config --global http.proxy
查询到后取消他
git config --global --unset http.proxy
三。升级xcode后找不到插件
解决方法如下:
网友评论