当前位置:   article > 正文

Git配置代理:fatal: unable to access*** github Failure when receiving data from_failure when receiving data from the peer

failure when receiving data from the peer

~吐槽一下

github自从被微软收购以后,大多数情况没点科技上网都进不去了,还是怀念以前随时访问的时光。

我一直都是开着系统代理的,但是今天拉一个项目发现拉不下来了,报错:

fatal: unable to access 'https://github.com/ ***** .git/': Failure when receiving data from the peer

  • 1
  • 2

在这里插入图片描述

这只能说明我自己的Git里面代理没生效咯~
那就自己手动设置吧!

  1. 首先看一下自己的配置
git config --global --list
  • 1
  1. 设置代理(如果有需要就设置)

# 格式就是: git config --global http.proxy IP:端口
# 例如我的
git config --global http.proxy 127.0.0.1:7890

# 注意:如果是需要身份验证的,就用这种格式:
git config --global http.proxy 用户名:密码@IP:端口

# 如果需要设置https,那么就需要把 http.proxy 改成 https.proxy
git config --global https.proxy 127.0.0.1:7890

# 之后再用命令查看一下修改后的配置

git config --global --list

# 设置好之后就可以愉快地 git clone 了
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  1. 取消设置代理(如果你不需要代理了可以取消设置)
git config --global --unset http.proxy

# 或者

git config --global --unset https.proxy

# 再查看修改后的配置
git config --global --list

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

最终我的配置如下:
在这里插入图片描述

OJBK完事!

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

闽ICP备14008679号