Git添加代理

git连接github会很慢,本文主要记录一些git添加代理的一些方式

设置全局git代理

1
2
3
git config --global https.proxy http://127.0.0.1:1080

git config --global https.proxy https://127.0.0.1:1080

取消全局git代理

1
2
3
git config --global --unset http.proxy

git config --global --unset https.proxy

单独为Github设置代理

1
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

Git添加代理
https://mqpeng.github.io/2023/08/09/git-slow/
作者
Joker Spice
发布于
2023年8月9日
许可协议