http和socks
v2rayN监听端口为
socks:10808
http:10809
设置http代理
git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy https://127.0.0.1:10809
设置scoks代理
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808
查看Git所有配置
git config -l
取消代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy