Mercurial:忽略从 .idl 生成的 .h

发布于 2024-11-07 04:07:25 字数 268 浏览 0 评论 0原文

是否可以在 Mercurial 中使用 .hgignore 来忽略 idl 文件生成的头文件?

我在 VS2008 中有一个非常大的项目,默认情况下,midl 工具从同一文件夹中具有相同名称的 .idl 文件生成 .h 文件。当然,我不希望生成的文件受到控制。如果同一文件夹中存在 xxx.idl 文件,是否可以将 Mercurial 配置为忽略 xxx.h 文件?

我的问题还有其他解决方案吗?重命名这大约 100 个项目的文件会花费很长时间,而且这并不是我真正想要考虑的选项......

is it possible to use .hgignore in mercurial to ignore header files generated from idl files?

I have a very large project in VS2008 and, by default, the midl tool generates .h files from .idl files in the same folder and with the same name. Naturally, I do not want the generated files controlled. Is it possible to configure mercurial to ignore a xxx.h file if there is xxx.idl file in the same folder?

Is there any other solution to my problem? Renaming the files for those ~100 projects would take ages and is not really an option I want to consider...

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

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

发布评论

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

评论(2

清旖 2024-11-14 04:07:25

正如 stevevls 指出的那样,您可以忽略所有 .h 文件,然后手动添加您想要跟踪的 .h 文件(hg add 覆盖忽略)。

另一种选择是将类似的内容放入 .hg/hgrc

[ui]
ignore.generated = .hgignore-generated

,然后手动或使用挂钩创建该文件,以便列出所有生成的 .h 文件。您可以选择跟踪或取消跟踪该文件。在 Unix 上,这会自动创建该文件:

find . -name '*.idl' | sed 's/\.idl$/.h/ >| .hgignore-generated

我不知道如何在 Windows 上编写脚本,但有人想象 powershell 可以做到这一点。

As stevevls pointed out you can just ignore all .h files and then manually add the .h files you do want tracked (hg add overrides ignores).

Another option would be to put something like this in your .hg/hgrc

[ui]
ignore.generated = .hgignore-generated

and then create that file either manually or with a hook so that it lists all the generated .h files. The file could be tracked or untracked at your option. On unix this would auto create that file:

find . -name '*.idl' | sed 's/\.idl$/.h/ >| .hgignore-generated

I've no idea how to script that on windows, but one imagines powershell can do it.

番薯 2024-11-14 04:07:25

是的,这是可能的。 .hgignore 非常灵活,接受 glob 和正则表达式。您可能会逃脱:

syntax:glob
*.h

请参阅此处了解更多详细信息:http://www.selenic。 com/mercurial/hgignore.5.html

Yes, this is possible. .hgignore is very flexible and accepts globs and regexes. You could probably get away with :

syntax:glob
*.h

See here for more details: http://www.selenic.com/mercurial/hgignore.5.html.

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