git设置HTTP代理 设置HTTP代理 如果公司使用代理,git就需要设置代理才能克隆远程仓库 执行下面两条语句 git config --global http.proxy 10.167.32.133:8080 git config --global https.proxy 10.167.32.133:8080 如果需要用户名和密码 git config –global http.proxy http://user:password@10.167.32.133:8080 git config…