Git设置/取消代理 2023-10-26 13:08 | 404 | 0 | 技术笔记 设置http/https代理 # 设置http代理 git config --global http.proxy IP:Port # 设置https代理 git config --global https.proxy IP:Port 示例 git config --global http.proxy 127.0.0.1:7890 git confi… git代理笔记