美文网首页
删除大文件的提交记录

删除大文件的提交记录

作者: JimmyL | 来源:发表于2018-08-14 11:41 被阅读67次

需求:较大的文件重复提交后,为节省git空间,想将其在历史提交记录中删除;
通过git-filter-branch实现;

git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch path-to-your-remove-file' --prune-empty --tag-name-filter cat -- --all

相关文章

网友评论

      本文标题:删除大文件的提交记录

      本文链接:https://www.haomeiwen.com/subject/saoceftx.html