屏蔽证书验证
以下先不执行
用户根目录下找到.gitconfig
[https]
sslVerify = false
proxy = http://3zi.cn/test.git
proxy后边跟的是需要屏蔽的网站
关掉安全验证
先执行下面的看有没有问 没问题就不做上面的操作了
如果连接git是报错unable to access ‘https://****’: SSL certificate problem: Invalid 因为有些服务器是https是自签名的. 所以在命令行上运行
git config --global http.sslVerify false
将安全验证关掉