Can I remove the initial commit from a Git repo?
本问题已经有最佳答案,请猛点这里访问。
似乎我最初的提交占用了90%的空间,因为它意外地在其中包含了大量媒体文件。有没有一种方法可以从本地和远程回购中只删除第一个提交,或者我应该只保留这个提交?
听起来您已经与许多其他用户共享了存储库。如果是这样的话,那么你应该接受它。
如果您控制了所有克隆,那么您可以在修改后的根提交之上重新编写历史记录,并删除意外的文件。请注意,如果其他开发人员已经基于该分支进行了工作,则不应该这样做。
如果你想改写历史,你可以尝试以下方法。注意,由于Git保存了最近头部提交的日志(reflogs),因此大型对象不会立即从您的存储库或其他已经拥有它们的存储库中消失,即使您尝试使用
假设您的工作目录是"干净"的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Go back the initial commit git checkout <SHA1_of_old_root> # Clean up the index to remove unwanted files, e.g. using git rm <files> # ... # Amend the initial commit with the new tree. Note the sha1 of the new commit git commit --amend # Go back to the master branch git checkout master # Re-apply all the commits onto the new root git rebase --onto <SHA1_of_new_root> <SHA1_of_old_root> |
或者,您可以使用git filter分支删除有问题的文件(参见示例部分),但它也在重写历史记录。所以任何把他/她的代码建立在你过去的历史之上的人都会感到非常震惊…