发布于 4年前
git bash配置代理解决下载慢的方法
首先找到一个代理服务地址,也可以使用shadowsocks,蓝灯。
假设本地使用了蓝灯,http(s)代理地址为:127.0.0.1:52427。
Git配置代理
>git config http.proxy http://127.0.1:52427
>git config https.proxy https://127.0.1:52427
Git设置为全局代理
git config --global http.proxy http://127.0.1:52427
git config --global https.proxy https://127.0.1:52427
Git取消代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy
Git查看config配置
git config --global -e