当前位置:   article > 正文

git 配置网络代理_git 加代理

git 加代理

提高 git 访问 github 速度

网络代理前提:

  • 开启代理(梯子)
  • 检查代理端口(可能会有所不同)

1. git 配置参数列表命令:

git config --list
  • 1

2. git 添加 http 代理

两个http 差别不大,只是增加(或减少)一个字母 s
选择下面其中一个就可以。

  1. http / https 代理

根据 http 端口设置,我这里端口为 10809

git config --global http.proxy http://127.0.0.1:10809
  • 1
git config --global https.proxy https://127.0.0.1:10809
  • 1
  1. socks 代理

根据 socks 端口设置,我这里端口为 10808

git config --global http.proxy 'socks5://127.0.0.1:10808'
  • 1
git config --global https.proxy 'socks5://127.0.0.1:10808'
  • 1

3. git 取消 http 代理

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

参考

  1. git 设置网络代理,修改http.proxy

附录

我的代理端口截图如下:

在这里插入图片描述

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

闽ICP备14008679号