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
相关推荐
炸膛坦客1 天前
Git 和 GitHub:(十二)基于远程仓库的某一个分支的某一笔提交创建新分支
git·github
炸膛坦客1 天前
Git 和 GitHub:(十三)改分支名
git·github
他们叫我秃子1 天前
Git 使用指南笔记:从入门到团队协作
git
铁锚1 天前
Git设置自动推送到同名远端分支
git
起个破名想半天了2 天前
Git 本地项目关联远程仓库教程
git·github·git教程
lazy H2 天前
Git worktree 怎么用?同时开发多个分支完整教程
大数据·git·后端·学习·搜索引擎·github
重生的黑客2 天前
Git 本地版本管理与分支管理:从零理解工作区、回退、冲突与开发流程
数据库·git·elasticsearch
Cx330_FCQ2 天前
Tmux使用
服务器·git·算法
xxwl5852 天前
Git 完整学习笔记:从入门到团队协作
笔记·git·学习
John_ToDebug3 天前
Git 工作区、暂存区、仓库、远端同步完全指南:从 restore、reset 到 fetch、pull 的正确使用姿势
git·源代码管理