git设置代理及取消代理 发表于 2019-08-05 更新于 2025-02-13 分类于 技术 阅读次数: 阅读次数: Valine: 设置代理12git config --global http.proxy 'socks5://127.0.0.1:1080'git config --global https.proxy 'socks5://127.0.0.1:1080' 取消代理12git config --global --unset http.proxygit config --global --unset https.proxy 列出配置清单1git config --global -l