type
status
date
slug
summary
tags
category
icon
password
AI custom autofill
github上传遇到的 Failed to connect to github.com port 443 after ** ms: Timed out 报错
遇到这种报错,往往是由于 Git 代理设置出现问题,按照以下操作重新配置代理:
查看原代理设置
git config --get http.proxy git config --get https.proxy
取消原代理设置
git config --global --unset http.proxy git config --global --unset https.proxy
刷新 DNS 解析缓存
ipconfig /flushdns
重新设置代理
git config --global https.proxy [<http://127.0.0.1:7890>](<http://127.0.0.1:7890/>) git config --global https.proxy [<https://127.0.0.1:7890>](<https://127.0.0.1:7890/>)
配置完成
配置中的7890端口需要和电脑的代理端口吻合。打开:设置 --> 网络与Internet --> 代理(Windows10直接搜索 更改代理设置),查看本机使用的代理的端口号。
报错:OpenSSL SSL_read: Connection was reset, errno 10054
遇到这种报错,可以打开本地.git文件夹下的config文件,增加配置。
[http] sslVerify = false [https] sslVerify = false