赞
踩
1、查看 Git 全局配置项
git config --global -l
2、设置 http、https 全局代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
3、取消 http、https 全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
4、除了全局代理外,我们还可以针对单个仓库添加局部代理
首先,切换到需要设置代理的git仓库目录下,然后执行以下命令:
git config http.proxy http://127.0.0.1:7890
该命令执行后,该git仓库下所有的git命令都会通过设置的代理服务器进行网络访问。
参考:
https://blog.csdn.net/weixin_44296929/article/details/111242452
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。