Git 基础知识记录分享 - Git 设置代理和取消代理

版权归原作者所有。 本文最后更新于:2023年11月19日 下午

Git 设置代理和取消代理

如果代理类型是socks5进行如下设置即可

``shell
git config –global http.proxy socks5://127.0.0.1:1080
git config –global https.proxy socks5://127.0.0.1:1080


## 如果是普通的http/https进行如下设置即可

git config –global https.proxy http://127.0.0.1:1080
git config –global https.proxy https://127.0.0.1:1080


## 取消代理设置

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


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明蚁点博客出处!