Windows系统中为 git 命令设置代理

1.设置方式:httpsocks

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

博主的 v2rayN 监听端口为:

1
2
socks:10808
http:10809

2.设置http代理

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

3.设置scoks代理

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

4.查看 Git 所有配置

1
git config -l

5.取消代理设置

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy
本博客已稳定运行