问题描述
修改git
代理后再运行git clone
时出现如下问题
Failed to connect to 127.0.0.1 port 31181 after 2066 ms: Connection refused
解决方法
- 取消
git
代理
git config --global --unset http.proxy
git config --global --unset https.proxy
输入以上命令 取消gitconfig
中的http.proxy=127.0.0.1:1080
或者https.proxy=127.0.0.1:1080
。
clone
成功