如何在 git/TortoiseGit 中追溯删除版本控制文件?
可能的重复:
git - 从存储库中删除文件
我刚刚意识到我的二进制文件已经是版本- 自从我启动我的 git 存储库以来,它已经得到了 10MB 的 .git
—— 对于一个小项目的 40 个修订来说太大了。
如何从存储库中追溯删除这些文件?简单的 git 删除不会删除它们的历史记录,因此它们会继续占用空间。
我正在使用 TortoiseGit 和 Unfuddle。
Possible Duplicate:
git - remove file from the repository
I just realised that my binaries have been version-controlled since I started my git repository, which has resulted in a .git
of 10MB -- way too large for 40 revisions of a small project.
How can I retroactively remove these files from the repository? A simple git removal would not remove their history, so they would keep taking up space.
I'm using TortoiseGit with Unfuddle.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这需要
git filter-branch
。您将能够删除您从未打算跟踪的文件。请查看此处以获取更多信息:
http://git-scm.com/docs/git -filter-branch
希望这有帮助。
This calls for
git filter-branch
. You will be able to get rid of the files you never intended on tracking.Take a look here for more information:
http://git-scm.com/docs/git-filter-branch
Hope this helps.