GIT是否走代理

57次阅读
没有评论
//设置为走代理
git config --global http.proxy http://127.0.0.1:1080

git config --global https.proxy http://127.0.0.1:1080

//取消走代理
git config --global --unset http.proxy 

git config --global --unset https.proxy 


正文完