git 上传文件过大 上传失败 需要配置

时间:2024-04-11 22:16:12

Delta compression using up to 12 threads
Compressing objects: 100% (55/55), done.
client_loop: send disconnect: Connection reset by peer
fatal: sha1 file '<stdout>' write error: Broken pipe/s
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
 

 

git config http.postBuffer 52428800  配置上传文件的大小 改大 即可

 

git 上传文件过大 上传失败 需要配置

----------------------------

以上方法失败 考虑安装  git lfs 文件管理来上传

1、在官网下载 安装 https://git-lfs.github.com/    安装exe执行文件

2、git执行命令   git lfs install

3、执行 git lfs track “* .gif”  #这里的 “ *.gif "就是你要上传的大文件的类型

4、vi .gitattributes

之后就可以添加 大文件了   记得 之前已经commit了的话 撤销一下 重新add  commit

git add demo.gif
git commit -m "提交项目演示gif图"
git push