Git上传失败!

问题描述
关于使用Git出现“git Failed to connect to 127.0.0.1 port xxxx Connection refused”的问题解决方案
最近在使用 git 拉取、提交代码的时候,会出现 git Failed to connect to 127.0.0.1 port xxxx: Connection refused 的问题。

原因:无法连接到127.0.0.1: xxx端口: 连接被拒绝。

解决方案

思路:查询当前是否有代理,如果有就取消。

1
2
3
4
5
6
7
8
9
10
// 首先,查一下当前全局的 http 代理:
git config --global http.proxy
// 如果有代理,就取消
git config --global --unset http.proxy


// 再查 https 的代理:
git config --global https.proxy
// 同样的,有就取消
git config --global --unset https.proxy