UCM 动态视图配置规范:排除所有 *.xml,但包括 build.xml

发布于 2024-10-20 01:07:34 字数 237 浏览 1 评论 0原文

我正在使用带有动态视图的 Clearcase UCM。 (在 Linux 上)

在我看来,有许多以 .xml 结尾的文件。其中一些是“build.xml”文件,其他是数据 文件。我只想在我的视图中查看“build.xml”文件。

配置规范中的以下行排除所有“*.xml”文件。

element *.xml -none 

如何只包含“build.xml”文件?

I am using Clearcase UCM with a dynamic view. (On linux)

In my view there many files ending in .xml. Some of there are "build.xml" files, others are data
files. I want to view only "build.xml" files in my view.

Following line in config spec excludes all the "*.xml" files.

element *.xml -none 

How can I include just the "build.xml" files?

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

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

发布评论

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

评论(1

他是夢罘是命 2024-10-27 01:07:34

只需在非选择规则之前添加选择规则即可

element build.xml .../yourStream/LATEST
element build.xml yourBaseline
element *.xml -none

。 注意:这些规则应放在视图的 UCM 配置规范的开头,否则将首先应用通常的 UCM 选择规则,最终您将看到其中的所有文件你的组件。

Just add the select rule before the non-select rule

element build.xml .../yourStream/LATEST
element build.xml yourBaseline
element *.xml -none

Note: those rules should be put at the beginning of the UCM config spec of your view, otherwise the usual UCM select rules would be applied first, and you would end up seeing all files within your component.

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