【在 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