Git 使用代理
2025/11/30小于 1 分钟
Git使用代理命令
Http:git config --global http.proxy http://127.0.0.1:7897
Https:git config --global https.proxy https://127.0.0.1:7897
取消代理:git config --global --unset http.proxy
取消https代理:git config --global --unset https.proxy
