Git 对指定域名使用代理

Git 对指定域名使用代理加速

全部使用代理

# socks5协议,10808端口修改成自己的本地代理端口
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808

# http协议,10809端口修改成自己的本地代理端口
git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy http://127.0.0.1:10809

只针对某个地址进行代理,如 github.com

# socks5协议,10808端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy socks5://127.0.0.1:10808
git config --global https.https://github.com.proxy socks5://127.0.0.1:10808

# http协议,10809端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy http://127.0.0.1:10809
git config --global https.https://github.com.proxy http://127.0.0.1:10809

相关的命令

# 查看所有配置
git config -l
# reset 代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy

参考:

一招 git clone 加速 - 掘金