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

解决git误commit大文件导致不能push问题

程序员文章站 2022-07-09 15:15:17
git push时终端报错:error: rpc failed; http 413 curl 22 the requested url returned error: 413 request enti...

git push时终端报错:

error: rpc failed; http 413 curl 22 the requested url returned error: 413 request entity too large
fatal: the remote end hung up unexpectedly

你已经把大文件写入本地.git历史中。
你需要把它从commit历史,以及.git库里移除掉。
可以使用git filter-branch --tree-filter 'rm -f 文件名' head命令

解决git误commit大文件导致不能push问题

参考:https://git-scm.com/book/zh/v1/git-工具-重写历史#核弹级选项:-filter-branch

总结

到此这篇关于解决git误commit大文件导致不能push问题的文章就介绍到这了,更多相关git误commit大文件导致不能push内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!