46 字
1 分钟
Git 配置代理
全局代理
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