Git 提速

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

你可能感兴趣的:(Git 提速)