Git设置和取消代理

1、查看 Git 全局配置项

git config --global -l

2、取消http、https代理

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

3、手动配置http、https代理

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

参考:

https://blog.csdn.net/weixin_44296929/article/details/111242452

https://blog.csdn.net/qq_37544121/article/details/120137996

你可能感兴趣的:(Git,git)