github.com port 443 问题

排查

  1. 查看 git 配置
shell 复制代码
 	git config --global -l
  1. 查看 windows 代理
    设置 搜索 代理 查看 端口6789
  2. 设置 git 代理端口为系统代理端口
shell 复制代码
	git config --global http.proxy 127.0.0.1:6789
	git config --global https.proxy 127.0.0.1:6789
  1. 若系统无代理, 则移除 git 代理
shell 复制代码
# 移除代理
git config --global --unset http.proxy
git config --global --unset https.proxy

参考

https://blog.csdn.net/qq_40296909/article/details/134285451

相关推荐
阿巴~阿巴~3 小时前
Git 删除文件
git·gitee·github
绝无仅有3 小时前
Go 并发同步原语:sync.Mutex、sync.RWMutex 和 sync.Once
后端·面试·github
绝无仅有4 小时前
Go Vendor 和 Go Modules:管理和扩展依赖的最佳实践
后端·面试·github
项目題供诗5 小时前
Hadoop(四)
大数据·hadoop·github
10岁的博客10 小时前
GitHub宕机自救指南技术文章大纲
github
花椒和蕊10 小时前
记录git报错ssh: connect to host github.com port 22: Connection timed out,已解决
git·ssh·github
CoderJia程序员甲10 小时前
GitHub 热榜项目 - 日榜(2025-08-28)
ai·github·开源项目·github热榜
atwednesday12 小时前
git提交规范
github
顾辰逸you12 小时前
git打包流程
前端·github
早睡早起头发多12 小时前
Git 高级协作技巧:储藏与变基实战指南🛠️
github