当前位置:   article > 正文

git设置代理后出现 Failed to connect to 127.0.0.1 port 1080: Connection refused错误_could not connect to proxy 127.0.0.1(127.0.0.1):10

could not connect to proxy 127.0.0.1(127.0.0.1):10808 - connection attempt f

解决方法: 指定的端口应该取决于具体的机器和你所使用的代理软件,并不一定是1080端口。具体是哪一个端口可以到你所使用的代理软件中查看,比如我所使用的软件它使用的端口就是10808(如下图)。
在这里插入图片描述
当然如果你不想使用代理了,你可以使用git config --global --unset http.proxy等命令取消代理,或者直接去.gitconfig文件中删除与代理相关的内容

补充:

# 只针对github设置代理
git config --global http.https://github.com.proxy 
# 或者直接到.gitconfig中添加以下内容
[http "https://github.com"]
    proxy = socks5://127.0.0.1:1080
# 取消代理
git config --global --unset http.https://github.com.proxy

# 所有的都使用代理
git config --global https.proxy socks5://127.0.0.1:1080
# 或者直接到.gitconfig中添加以下内容
[http]
    proxy = socks5://127.0.0.1:1080
# 取消代理
git config --global --unset http.proxy

# 注:
# 1. 这里使用的是socks5,你需要到你的代理软件中去查看socks5具体使用的是哪个端口,不一定是1080!!!
# 2. 以上情况都是针对你使用的是https访问的情况,若要给ssh设置代理请参考下面的链接
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

参考链接: https://gist.github.com/laispace/666dd7b27e9116faece6

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/482673
推荐阅读
相关标签
  

闽ICP备14008679号