# HTTP 代理(clone http/https 仓库都会走)
# 注意这里7890是mx的端口,不同的梯子的端口不一样
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
# 检查 HTTP 代理配置
git config --global --get http.proxy
git config --global --get https.proxy
|