Git代理的设置与取消

来源:互联网 发布:华为 移动数据变灰 编辑:程序博客网 时间:2024/04/30 18:31

设置代理:

git config --global http.proxy http://127.0.0.1:8099git config --global https.proxy https://127.0.0.1:8099

取消代理:

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


0 0