如何从 Mercurial 的整个项目历史记录中删除所有 Java 类文件?

发布于 2024-09-16 05:23:15 字数 272 浏览 1 评论 0 原文

当我启动 Mercurial 项目时,我忘记排除 target/classes 目录下的所有内容,例如:

target/classes/com/mypackage/MyClass.class

现在,当我执行 hg update 时,这些二进制文件会导致冲突。

是否有一个命令可以让我从整个项目历史记录中删除所有这些文件?

或者,如果没有,是否有一个命令可以让我一次删除一个文件?

When I started my Mercurial project I forgot to exclude everything under my target/classes directory, such as:

target/classes/com/mypackage/MyClass.class

Now these binary files are causing conflicts when I do a hg update.

Is there a single command that would allow me to delete all of these files from the entire project history?

Or, if not, is there a command that would allow me to remove them one file at a time?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浅忆流年 2024-09-23 05:23:15

如果您只想删除最新版本中的文件,请从磁盘中删除文件并使用 hg addremovehg remove --after target/classes/com/mypackage/*.class通知 Mercurial 您的删除事宜。

如果您想从整个历史记录中永久删除所有类文件,请使用 hg Convert--filemap 选项可重写您的存储库并删除所有修订版中的文件。然而,这个解决方案改变了修订ID。在多用户环境中,它可能会导致一些问题,因为它有效地创建了新的存储库。

If you just want to remove files from last revision, remove files from disk and use hg addremove or hg remove --after target/classes/com/mypackage/*.class to inform Mercurial about your deletion.

If you want to permanently remove all class files from you entire history use hg convert and --filemap option to rewrite your repository and get rid of files from all revisions. However this solution alters revision ids. In multi user environment it may cause some problems because it creates a new repository effectively.

流心雨 2024-09-23 05:23:15

如果您删除有问题的文件,然后执行hg addremove,那么这些文件将从存储库中删除。然而,它们仍然会留在历史中,但这真的是一个问题吗?

If you delete the files in question then do hg addremove then the files will be removed from the repository. However they will still be in the history though, but is that really a problem?

浅笑轻吟梦一曲 2024-09-23 05:23:15

使用hg remove --after target/classes/com/mypackage/*.class。 (--after 将避免删除磁盘上的文件)。

Use hg remove --after target/classes/com/mypackage/*.class. (--after will avoid deleting the on-disk files).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文