0


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

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

1.设置方式:

http

socks

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

博主的v2rayN监听端口为:

socks:10808
http:10809

2.设置

http

代理

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

3.设置

scoks

代理

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

4.查看Git所有配置

git config -l

5.取消代理设置

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

本文转载自: https://blog.csdn.net/AIFRZ/article/details/137375472
版权归原作者 Ztiddler 所有, 如有侵权,请联系我们删除。

“【在 Windows系统中为 git 命令设置代理(v2rayN)】”的评论:

还没有评论