2022-09-04发表Git1 分钟读完 (大约116个字)Git设置代理Git设置代理 1234567891011121314151617181920# 设置全局代理# httpgit config --global https.proxy http://127.0.0.1:1080# httpsgit config --global https.proxy https://127.0.0.1:1080# socks5git config --global http.proxy socks5://127.0.0.1:1080git config --global https.proxy socks5://127.0.0.1:1080 # 只对github.com使用代理,其他仓库不走代理git config --global http.https://github.com.proxy socks5://127.0.0.1:1080git config --global https.https://github.com.proxy socks5://127.0.0.1:1080# 取消github代理git config --global --unset http.https://github.com.proxygit config --global --unset https.https://github.com.proxy # 取消全局代理git config --global --unset http.proxygit config --global --unset https.proxyGit设置代理https://xiaoyes.cn/post/2022-09-04-git-proxy/作者路远发布于2022-09-04更新于2023-04-21许可协议#Git