git clone http/https 报错 10054/443 问题

文章目录

  • 错误
  • 解决方案
    • [1 关闭http和https代理](#1 关闭http和https代理)
    • [2 设置自己的代理](#2 设置自己的代理)

错误

错误 Failed to connect to github.com port 443: Timed out OpenSSL SSL_read: Connection was reset, errno 10054 一般都是网络问题

解决方案

1 关闭http和https代理

go 复制代码
git config --global --unset http.proxy

git config --global --unset https.proxy

2 设置自己的代理

1.按win键 2 打开设置 3 在网络和Internet找到自己的代理端口(我的是7890)4 然后命令行修改代理

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

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

查看git当前代理设置

go 复制代码
git config --global --get http.proxy

git config --global --get https.proxy
相关推荐
程序员buddha1 小时前
git版本工具使用教程
git
heilai42 小时前
workerman的安装与使用
c++·websocket·http·php·phpstorm·visual studio code
ClareXi2 小时前
react项目通过http调用后端springboot服务最简单示例
spring boot·react.js·http
tian-ming6 小时前
技术栈2:Git分布式版本控制工具
git
算你狠 - ZGX7 小时前
Git - 日志
git
CherishTaoTao7 小时前
Git别名设置
大数据·git
Python私教7 小时前
git配置用户信息
git
scoone9 小时前
Git 中的 patch 功能
git
scoone9 小时前
删除 git config 保存的密码
git
zhangphil11 小时前
git rebase --continue解冲突操作
git