当前位置:   article > 正文

使用VPN代理之后,无法使用Git拉取代码_开了代理 代码git不了

开了代理 代码git不了

使用VPN代理之后,无法使用Git拉取代码

使用了VPN代理后,拉取代码报错
$ git clone https://github.com/PanJiaChen/vue-element-admin
Cloning into 'vue-element-admin'...
fatal: unable to access 'https://github.com/PanJiaChen/vue-element-admin/': OpenSSL SSL_read: Connection was reset, errno 10054

  • 1
  • 2
  • 3
  • 4
解决办法

原因:git需要设置代理

第一种办法:git需要设置代理,如vpn端口号为8888,则Git设置代理为:8888

 git config --global http.proxy '127.0.0.1:8888'
 
 git config --global https.proxy '127.0.0.1:8888'
  • 1
  • 2
  • 3

第二种办法:直接取消代理

查看代理:

git config --global --get http.proxy

git config --global --get https.proxy
  • 1
  • 2
  • 3

取消代理:

git config --global --unset http.proxy

git config --global --unset https.proxy
  • 1
  • 2
  • 3

然后在拉取代码,发现就可以了

$ git clone https://github.com/PanJiaChen/vue-element-admin
Cloning into 'vue-element-admin'...
remote: Enumerating objects: 11979, done.
remote: Total 11979 (delta 0), reused 0 (delta 0), pack-reused 11979
Receiving objects: 100% (11979/11979), 15.07 MiB | 90.00 KiB/s, done.
Resolving deltas: 100% (7365/7365), done.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/92782
推荐阅读
相关标签
  

闽ICP备14008679号