【 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