前言
我想在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
这个报错很奇怪,git应该直接访问的是github的远程端口,怎么会去连接本地的1080端口呢,看样子应该是有代理设置,于是我在网上搜索了相关的资料,找到了对应的解决方法。
解决方法
查看http代理
git config --global http.proxy
查看https代理
git config --global https.proxy
取消代理设置
git config --global --unset http.proxy git config --global --unset httpx.proxy
查看git的用户配置
cat ~/.gitconfig
重新试下git clone,OK了。
博主:测试生财
座右铭:专注测试与自动化,致力提高研发效能;通过测试精进完成原始积累,通过读书理财奔向财务自由。
csdn:https://blog.csdn.net/ccgshigao
来源:oschina
链接:https://my.oschina.net/u/4387121/blog/4595808