AndroidStudio 中git 报Connection w
2020-05-21 本文已影响0人
chuanggggg
项目中一次Git 的 push提交失败了,AndroidStudio中报错如下:
1590023824(1).jpg
image.png
最终解决方案:
git config --global http.postBuffer 524288000
Google后,原因是超出git默认上传文件大小,提供的方案是增加git上传的缓存区,执行
git config http.postBuffer 524288000 后报错如下:
image.png
最终解决方案:
git config --global http.postBuffer 524288000
或
git config --global http.postBuffer 1048576000
记得重启后生效