美文网首页
AndroidStudio 中git 报Connection w

AndroidStudio 中git 报Connection w

作者: chuanggggg | 来源:发表于2020-05-21 10:00 被阅读0次
项目中一次Git 的 push提交失败了,AndroidStudio中报错如下: 1590023824(1).jpg

Google后,原因是超出git默认上传文件大小,提供的方案是增加git上传的缓存区,执行
git config http.postBuffer 524288000 后报错如下:


image.png
最终解决方案:
git config --global http.postBuffer 524288000


git config --global http.postBuffer 1048576000
记得重启后生效

相关文章

网友评论

      本文标题:AndroidStudio 中git 报Connection w

      本文链接:https://www.haomeiwen.com/subject/mrnaohtx.html