Karp 的技术博客

2024-09-05T07:47:26.png

问题描述 : Git:解决报错:fatal: The remote end hung up unexpectedly

问题原因 : 推送的文件太大.

解决方法 :

1. 修改设置 git config 文件的 postBuffer的大小 . (设置为500MB)


git config --local http.postBuffer 524288000

注: --local 选项指定这个设置只对当前仓库生效.

2. 或者直接修改本地仓库的 .config 文件

$ cd .git
$ vim config

增加下面两行内容

[http]
    postBuffer = 524288000
Fatal: the remote end hung up unexpectedly

git

版权属于:karp
作品采用:本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
更新于: 2024年08月15日 07:59
2

目录

来自 《Git:解决报错:fatal: The remote end hung up unexpectedly 》
774 文章数
0 评论量
9 分类数
779 页面数
已在风雨中度过 9年279天5小时45分