Git克隆工程报错:Failed to connect to 127.0.0.1 port 1080

你说的曾经没有我的故事 提交于 2020-10-02 02:57:43

前言

我想在Mac上安装wondershaper,本来想使用Mac上的brew安装,但brew的软件安装列表中没有wondershaper,于是便准备下载Git工程进行安装。

下载wondershaper的git工程,输入:

git clone https://github.com/magnific0/wondershaper.git

fatal: unable to access 'https://github.com/magnific0/wondershaper.git/': Failed to connect to 127.0.0.1 port 1080: Connection refused

image.png

这个报错很奇怪,git应该直接访问的是github的远程端口,怎么会去连接本地的1080端口呢,看样子应该是有代理设置,于是我在网上搜索了相关的资料,找到了对应的解决方法。


解决方法

查看http代理

git config --global http.proxy

输出:http://127.0.0.1:1080

 

查看https代理

git config --global https.proxy

输出:http://127.0.0.1:1080

 

取消代理设置

git config --global --unset http.proxy git config --global --unset httpx.proxy

 

查看git的用户配置

cat ~/.gitconfig

 image.png

重新试下git clone,OK了。

博主:测试生财

座右铭:专注测试与自动化,致力提高研发效能;通过测试精进完成原始积累,通过读书理财奔向财务自由。

csdn:https://blog.csdn.net/ccgshigao

博客园:https://www.cnblogs.com/qa-freeroad/

51cto:https://blog.51cto.com/14900374


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!