curl: (56) OpenSSL SSL_read: Connection reset by peer, errno 104

bash 复制代码
Sun@ubuntu-vm:~/.vcpkg-clion/vcpkg$         ./bootstrap-vcpkg.sh 
Downloading vcpkg-glibc...
curl: (56) OpenSSL SSL_read: Connection reset by peer, errno 104

针对上述问题,网上给出了如下解决办法:

bash 复制代码
git config --global http.sslVerify "false"

git config --global http.postBuffer 54288000

以及,

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

git config --global https.proxy  https://127.0.0.1:7890

配置后显示如下:

bash 复制代码
Sun@ubuntu-vm:~/.vcpkg-clion/vcpkg$ git config --global --list

http.sslverify=false
http.postbuffer=54288000
http.proxy=http://127.0.0.1:7890
https.proxy=https://127.0.0.1:7890
core.compression=0
相关推荐
Qres82118 分钟前
Git安装记录
git
wj3055853781 小时前
Codex + Git 开发环境配置指南(WSL版)
linux·运维·git
楠枬4 小时前
Git 分支管理
git
奇怪的点6 小时前
git clone失败
git
WaiSaa7 小时前
Ubuntu配置Git免密操作
git·ubuntu·gitee
牛奶咖啡137 小时前
Git实践——分支管理与标签管理及git个性化配置
git·禁用 fast forward·bug分支的创建与操作·远程分支的查看与推送·拉取仓库·推送指定分支到远程仓库·标签的创建与操作
千寻girling10 小时前
五一劳动节快乐 [特殊字符][特殊字符][特殊字符]
java·c++·git·python·学习·github·php
波特率11520011 小时前
git指令学习
git·学习
Karry_66611 小时前
[特殊字符] Git 提交项目 全套命令(按顺序执行)
git
计算机安禾12 小时前
【Linux从入门到精通】第39篇:版本控制Git服务器搭建——Gitea/GitLab私有化部署
linux·服务器·git