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
相关推荐
AIMath~6 小时前
向github中上传文件过大超过50M怎么办
网络·git·github
AIMath~10 小时前
如何将一个新的文件夹使用git 工具提交到github新仓库中
git·github
满天星830357710 小时前
【Git】原理及使用(二) (版本回退)
linux·git
愿天垂怜10 小时前
【C++脚手架】ffmpeg 库的介绍与使用
linux·服务器·开发语言·c++·ide·git·ffmpeg
月夜的风吹雨11 小时前
Linux 基础开发工具详解:从 yum 到 gdb 实战指南
linux·git·ubuntu·centos·vim
好运yoo11 小时前
git cherry-pick
git
不是光头 强12 小时前
Obsidian Git 插件安装与配置完全指南
git
.千余12 小时前
【C++】C++核心语法:函数重载与缺省参数原理与避坑
c语言·开发语言·c++·经验分享·笔记·git·学习
meowrain12 小时前
Git HTTPS Token 凭据配置指南
git·网络协议·https
Ws_1 天前
Git + Gerrit 第二课:diff、暂存区与撤销修改
git