欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

git push时报错:packet_write_wait: Connection to 13.229.188.59 port 22: Broken pipe

程序员文章站 2024-02-22 08:54:16
...

git push时出错信息

packet_write_wait: Connection to 13.229.188.59 port 22: Broken pipe
fatal: sha1 file '<stdout>' write error: Broken pipe
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly

原因

因为github的默认提交的文件大小是100M,如果你的文件大于100M,push时就会出现以上错误

解决

修改提交时的默认文件大小:
git config http.postBuffer 52428800 把大小配的大些即可!

参考:
http://www.cnblogs.com/MrZivChu/p/git.html