解决 git:OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0

解决 git:OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0

问题

git pull报错:fatal: unable to access 'https://github.com/aircrushin/ultrav-music.git/': Failed to connect to github.com port 443 after 21077 ms: Couldn't connect to server

解决方案

第一步:

bash 复制代码
//取消http代理
git config --global --unset http.proxy
//取消https代理 
git config --global --unset https.proxy

第二步:

查看自己的代理端口是多少,并重启。

第三步:

改成自己的端口号

bash 复制代码
git config --global http.proxy http://127.0.0.1:33210

问题解决:

参考:https://blog.csdn.net/good_good_xiu/article/details/118567249

相关推荐
Winlifes4 天前
我给 Codex 做了一个 Git 面板:分支树、提交历史和工作区操作
git
XUEYUAN52124 天前
ASN 自治系统号风控:平台如何通过 IP 所属自治域批量识别代理流量
python·网络协议·http·网络安全·socks5
CHENKONG_CK4 天前
破解制鞋打磨痛点:RFID赋能去毛刺工序自动化升级
网络·单片机·嵌入式硬件·网络协议·tcp/ip
z落落4 天前
C#UDP+串口服务端+UDP 客户端(含 CRC16 校验)
网络·网络协议·udp
曼巴UE54 天前
UE5 客户端 需要的网络同步概念总结(3 )-事件同步 RPC 以及三种调用方式
网络·c++·网络协议·学习·rpc·ue5
开开心心就好4 天前
安卓手写文字生成工具,多种纸张一直免费
网络·网络协议·tcp/ip·leetcode·智能手机·电脑·模拟退火算法
郑州光合科技余经理4 天前
同城外卖小程序开发:下单成功后,后台导出能不能对上用户端状态
开发语言·前端·git·后端·uni-app·php·ai编程
我命由我123454 天前
Git 推送报错:error: src refspec main does not match any
运维·git·gitee·github·运维开发·学习方法·版本控制
Lsetea5 天前
Nginx报No required SSL certificate was sent:mTLS客户端证书排查
运维·nginx·https·ssl·openssl
Lcr3s5 天前
Git基础之(0):如何在Ubuntu(Linux)上安装git
git