Git 设置 SSR 代理
git config --global http.proxy http://127.0.0.1:1080
git config --global http.proxy http://127.0.0.1:1080
根据自己的 SSR 本地代理端口设置即可,一般默认为 1080。
image.png取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
网友评论