疫情之下,居家办公,各种问题都出现了
今天想从Apache社区下载ORC的源码,悲催的发现报错了
而且,一番倒腾后,报错信息还发生变化了
# 原始报错
unable to access 'https://github.com/apache/orc.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
# 一番折腾后的报错
Failed to connect to github.com port 443: Operation timed out
总的来说吧,就是跟githu.com的443端口连接不上啊
解决的过程中,还以为找到了救命稻草:【已解决】OpenSSL SSL_connect: Connection was reset in connection to github.com:443
估计自己越着急,越混乱,结果没有成功
最后,灵光一闪,向同事求助,同事直接甩过来一个配置
git config --global url."https://ghproxy.com/https://github.com".insteadOf "https://github.com"
执行完后,再进行git clone
,成功了
同时,同事还提供了完整的参考文档
简直就是大佬造福世界 ,特此mark一下,方便自己以后使用