赞
踩
fatal: unable to access ‘https://github.com/???.git/’: Failed to
connect to github.com port 443 after 21129 ms: Couldn’t connect to
server
出现这种问题两种解决方法:
1.关闭代理,并且在终端设置
//取消http代理
git config --global --unset http.proxy
//取消https代理
git config --global --unset https.proxy
2.产生原因:一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错
解决方法:
git config --global http.sslVerify "false"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。