Skip to content

Git全局代理

Git 代理

设置代理:

shell
git config --global http.proxy http://127.0.0.1:33210

git config --global https.proxy https://127.0.0.1:33210

取消代理:

shell
git config --global --unset http.proxy

git config --global --unset https.proxy

Released under the MIT License.