Git 设置代理

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

注意:加上 --global 是对 git 设置全局代理,不加 --global 对指定仓库目录设置代理,局部代理

查看已修改 git 配置信息

git config -l --global

出现如下内容

C:\Users\ss>git config -l --global
user.name=xxx
user.email=xxx@qq.com
credential.helper=manager-core
http.sslverify=false
http.proxy=127.0.0.1:7890
core.autocrlf=true
https.proxy=127.0.0.1:7890

查看是否代理成功

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

重置代理(取消代理)

github 设置完代理下载提交文件代码都很快,如果不取消代理,连接国内的 gitee 就会变慢

git config --global --unset http.proxy 
git config --global --unset https.proxy
最后修改:2024 年 07 月 30 日
如果觉得我的文章对你有用,请随意赞赏