【 Git 设置代理】

【 Git 设置代理】

  • [1. 设置代理](#1. 设置代理)
  • [2. 检查当前 Git 代理](#2. 检查当前 Git 代理)
  • [3. 测试代理是否正常](#3. 测试代理是否正常)
  • [4. 查看Git所有配置](#4. 查看Git所有配置)
  • [5. 取消添加的代理](#5. 取消添加的代理)

1. 设置代理

添加 HTTP 和 HTTPS 代理:

bash 复制代码
git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy http://127.0.0.1:10809

添加 Socks5 代理:

bash 复制代码
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808

2. 检查当前 Git 代理

bash 复制代码
git config --global --get http.proxy
git config --global --get https.proxy

3. 测试代理是否正常

尝试通过 Git 克隆一个公共仓库,例如:

bash 复制代码
git clone https://github.com/comfyanonymous/ComfyUI.git

如果克隆成功且速度正常,则说明代理设置成功。

4. 查看Git所有配置

bash 复制代码
git config -l

5. 取消添加的代理

bash 复制代码
git config --global --unset http.proxy
git config --global --unset https.proxy
相关推荐
暮色念了红尘25 分钟前
【Ubuntu20.04】Apollo10.0 Docker容器部署+常见错误解决
linux·运维·服务器
繁梦溪37 分钟前
Ubuntu24.04部署L2TP
linux·运维·服务器
激进的猴哥1 小时前
day29-三剑客sed
linux·运维·服务器
qq_429856572 小时前
linux 查询当前服务器上是否存在某个名字的文件,显示该名称对应的文件路径,并且文件大小大于0kb
linux·服务器
zwhSunday2 小时前
信号的产生、处理
linux·信号
Wils0nEdwards2 小时前
Leetcode 查找和最小的 K 对数字
linux·算法·leetcode
皮小白3 小时前
linux国产机器-麒麟V10系统VNCserver的安装及使用
linux·运维·服务器
Eliauk783 小时前
Git的使用流程(详细教程)
git
w_outlier3 小时前
UDP_TCP
linux·c++·网络协议·udp·tcp
豆是浪个4 小时前
Linux(Centos 7.6)命令详解:ls
linux·运维·服务器