当前位置: 代码迷 >> 综合 >> 解决git下载出现:Failed to connect to 127.0.0.1 port 1080: Connection refused拒绝连接错误
  详细解决方案

解决git下载出现:Failed to connect to 127.0.0.1 port 1080: Connection refused拒绝连接错误

热度:45   发布时间:2023-09-15 03:49:15.0

转载于 https://shliang.blog.csdn.net/article/details/87929622

文章目录

  • 1.问题描述
  • 2.解决方法

1.问题描述

在修改git代理后再运行git push -u origin master时出现如下问题:

git: Failed to connect to 127.0.0.1 port 1080: Connection refused

     

    2.解决方法

    网上有很多解决方法,但我在尝试的时候运行并没有反映。后来经过尝试后发现如何有效地利用这些方法解决这个问题。
    网上方法:

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

      这个我在终端运行时并没有反映,经尝试后我发现只有在git的仓库位置(初始化的位置)运行才会取消gitconfig中的http.proxy=127.0.0.1:1080或者https.proxy=127.0.0.1:1080。

      我的Git初始化位置在public目录下,于是我运行git config --list后果然发现存在代理问题(而你在其他位置运行就不会显示这个代理),所以在public目录下运行以上方法即可成功解决。
      解决git下载出现:Failed to connect to 127.0.0.1 port 1080: Connection refused拒绝连接错误
      解决git下载出现:Failed to connect to 127.0.0.1 port 1080: Connection refused拒绝连接错误

        相关解决方案