使用V2Ray作为梯子时,可以通过查看Win10系统中的代理设置,查看代理的地址和端口,之后在git bash中如下修改即可。

img

img

修改代码如下

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

如果要取消代理,则可以

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