查看代理 | git config –global –get http.proxy git config –global –get https.proxy |
|
设置代理 | git config –global http.proxy http://localhost:7890 git config –global https.proxy https://localhost:7890 |
|
清除代理 | git config –global –unset http.proxy git config –global –unset https.proxy |
|