Qianshi's Blog
46 字
1 分钟
Git 配置代理
2024-09-20

全局代理#

git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

针对Github#

# 使用socks
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

# 使用http代理
git config --global http.https://github.com.proxy 'http://127.0.0.1:7890'

# 取消代理
git config --global --unset http.https://github.com.proxy

Git 配置代理
https://kuriyama.top/posts/dev/git-config-proxy/
作者
Qian Shi
发布于
2024-09-20
许可协议
CC BY-NC-SA 4.0