git设置和取消代理的作用
当我们访问GitHub的时候一般都会使用梯子,所以往上推代码的时候也是需要梯子,没有梯子推送成功概率很低,一般都会报错超时,所以设置梯子提高访问成功率

取消代理是因为,访问Gitee的时候不需要梯子,所以要取消代理

1.设置代理
git config --global http.proxy 'http://192.168.252.3:10809'
git config --global https.proxy 'http://192.168.252.3:10809'
2.取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
3.查看代理
git config --global --get http.proxy
git config --global --get https.proxy
4.拓展知识
git helper -a // 查看全部git子命令

————————————————
版权声明:本文为CSDN博主「阿毛~」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_50726818/article/details/128445447

发表评论

邮箱地址不会被公开。 必填项已用*标注