1、首先看自己的VPN代理socks端口,自己用的ClashX
2、根据socks端口配置git代理
git config --global http.proxy socks5://127.0.0.1:端口
git config --global http.https://github.com.proxy socks5://127.0.0.1:端口
3、建议再配置以下两个,不然后续安装会报错
git config --global http.version HTTP/1.1
git config --global http.postBuffer 524288000
4、可查看配置是否成功
git config --global --list
5、安装好了之后可以重置回去
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy