局部代理http: git config --local http.proxy 127.0.0.1:7890 https: git config --local https.proxy 127.0.0.1:7890 全局代理http: git config --global http.proxy 127.0.0.1:7890 https: git config --global https.proxy 127.0.0.1:7890 去掉代理git config --local --unset http.proxy git config --local --unset ...

阅读全文>>