当前位置:   article > 正文

【在 Windows系统中为 git 命令设置代理(v2rayN)】_windows git proxy

windows git proxy

1.设置方式:httpsocks

v2rayN 默认监听 1080/1081 端口,如果修改过默认端口,那么请自行替换下列端口。其中1080为socks端口,1081为http端口

博主的v2rayN监听端口为:

socks:10808
http:10809
  • 1
  • 2

2.设置http代理

git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy https://127.0.0.1:10809
  • 1
  • 2

3.设置scoks代理

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

4.查看Git所有配置

git config -l
  • 1

5.取消代理设置

git config --global --unset http.proxy
git config --global --unset https.proxy
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/851584
推荐阅读
相关标签
  

闽ICP备14008679号