惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
量子位
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
V
Visual Studio Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
V
V2EX
The GitHub Blog
The GitHub Blog
博客园_首页
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
博客园 - 叶小钗
F
Fortinet All Blogs
T
Tailwind CSS Blog
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
WordPress大学
WordPress大学
B
Blog
H
Help Net Security

多多

tplink白名单wifi新加用户操作办法 – 多多 笔记本投屏快捷键win+k – 多多 无极 以后你会失去更多 – 多多 再次出发之纽约遇见你:生活需要救赎,那就是热爱! – 多多 github下载地址获取办法 – 多多 微软浏览器自动关闭处理办法 – 多多 wp关闭评论办法 – 多多 静态网站提示:数据加载失败,请刷新页面重试怎么办 – 多多 腾讯eo pages 网站访问显示404 – 多多 收到好站网的抱枕啦! – 多多 访问网页返回567是什么意思 – 多多 域名txt解析 验证后删除可以吗? – 多多 域名从阿里云云解析转移到腾讯云的云解析 – 多多 blog简称的来历 – 多多 GitHub Desktop推送提示:This diff contains a change in line endings from ‘LF’ to ‘CRLF’.怎么办 – 多多 GitHub Desktop发送数据不成功处理办法 – 多多
Git 无法连接到你本地 127.0.0.1:xxxx 这个地址处理办法 – 多多
多多 · 2026-06-05 · via 多多

第一步:清除 Git 全局 + 局部代理

在 MINGW64 终端里,进入你的仓库目录,执行:

bash

git config --global --unset http.proxy
git config --global --unset https.proxy
git config --local --unset http.proxy
git config --local --unset https.proxy

第二步:确认已经清空

bash

git config --global --list | findstr proxy
git config --local --list | findstr proxy

必须没有任何输出


第三步:检查是否有 Windows 系统级 SSH 代理(最隐蔽)

按 Win + R,输入 %USERPROFILE%\.ssh\config,打开文件(如果没有就跳过)。

如果有类似这样的内容:

text

Host github.com
ProxyCommand connect -S 127.0.0.1:xxxxx %h %p

把它删除或注释掉(前面加 #)。


第四步:重启 GitHub Desktop,再次 Push

这次应该不会再报 xxxxx 错误。


第五步:如果还不行,改用 SSH 协议(一劳永逸)

你截图里 Desktop 已经选了 “Use system OpenSSH”,但仓库可能还是 HTTPS 地址。需要改成 SSH。

  1. 在 GitHub Desktop 里,点击 Repository → Repository settings
  2. 复制 SSH 地址:[email protected]:xxxxx/xxxxxx.git
  3. 或者在命令行里执行:bashgit remote set-url origin [email protected]:xxxxx/xxxxxxx.git

然后重新 Push。

参考:deepseek