删除先前提交/变更集中的文件
几次修订之前,我提交了一项工作,其中我不小心包含了一个 300mb 的 .flv 文件(不要问...)。
有没有办法可以编辑该变更集以不包含上述文件?
更新: 我想我可以使用 MQ 扩展并遵循这些说明(第 6 章)。但是,当我运行:hg qimport -r 11:tip
时,我收到错误:abort:内存不足
。
A few revisions ago I committed a piece of work in which I accidentally included a 300mb .flv file (don't ask...).
Is there a way I can edit that changeset to not include the aforementioned file?
UPDATE:
I think I can use the MQ extension and follow these instructions (chapter 6). However, when I run: hg qimport -r 11:tip
, I receive the error: abort: out of memory
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
hg Convert
与--文件映射
开关。请注意,修改后的变更集及其子项的 ID 将发生变化。如果您已经将其推送到远程位置,则在再次推送之前还需要在该存储库上使用 strip/convert。Use
hg convert
with--filemap
switch. Do note that IDs will change on modified changesets and their children. If you've already pushed it to a remote location, you need to use strip/convert on that repo as well, before pushing again.