鲍尔安装不知道为什么会这样,别人的项目



错误信息:ECMDERR执行失败"git ls-remote -tags -heads https://github.com/angular/bower-angular.git",退出代码#1OpenSSL SSL_read: Connection was reset, errno 10054

其他错误详细信息:致命:无法访问"https://github.com/angular/bower-angular.git/":OpenSSL SSL_read:连接被重置,errno 10054

可能是SSL证书或代理的问题。试着

git config --global http.sslVerify false

如果不工作,分别输入以下2个命令:

git config --global --unset http.proxy

git config --global --unset https.proxy

如果仍然不起作用,可能是因为依赖包太大,导致git请求超时。它可以解决通过修改大小的git http.postBuffer

git config http.postBuffer 524288000

最新更新