应用标签的配置规范

发布于 2024-11-19 09:55:42 字数 415 浏览 0 评论 0 原文

如何使用配置规范将标签应用到最新版本的分支?
我们可以使用配置规范应用标签吗?

好吧,我已经使用配置规范创建了分支,但我使用 apply label 选项应用了标签。
但我想通过在配置规范中给出它来应用它。

如果可以的话我们可以怎样做呢?

我尝试过,但它不起作用。提前谢谢您,

element  *   CHECKEDOUT  
element  /test_ari/karthik/omna.txt  .../karthik_9/LATEST/karthik_66
element  *  /main/LATEST

我想使用配置规范规则在 karthik_9/LATEST 上创建一个标签 karthik_66,但我该如何制作呢?

How to apply a label To the latest version of a branch Using config Spec?
Can we apply a label using the Config spec.

Well I have created branches using the Config spec but I applied labels using the apply label option.
But i want to apply it by giving it in the config spec.

Can we do it if so how?

I tried it but Its not working.Thank you in advance

element  *   CHECKEDOUT  
element  /test_ari/karthik/omna.txt  .../karthik_9/LATEST/karthik_66
element  *  /main/LATEST

I want to create a label karthik_66 on karthik_9/LATEST using config spec rules but how do i make it?

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

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

发布评论

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

评论(1

残疾 2024-11-26 09:55:42

根据 配置规范规则手册页,您可以在配置规范中使用标签来选择版本,而不是标记版本。
所以“不”。

创建/管理分支时, 您需要 3 条规则,而不是像您当前那样 1 条:

element * CHECKEDOUT

# 3 rules here:
element /test_ari/karthik/* .../karthik_9/LATEST
element /test_ari/karthik/* /main/LATEST -mkbranch karthik_9
element /main/0  .../karthik_9/LATEST

element * /main/LATEST

这将为任何文件创建一个分支(不仅仅是/test_ari/karthik 内的 omna.txt),以及任何新文件(/main/0 选择规则)。

由于您的视图始终引用 .../karthik_9/LATEST,因此您可以随时应用标签,将其设置在 karthik_9< 的 LATEST 上/代码>。

According to the config spec rules man page, you can use labels within a config spec to select a version, not to label one.
So "no".

When you create/manage a branch, you need 3 rules, not 1 like yo currently have:

element * CHECKEDOUT

# 3 rules here:
element /test_ari/karthik/* .../karthik_9/LATEST
element /test_ari/karthik/* /main/LATEST -mkbranch karthik_9
element /main/0  .../karthik_9/LATEST

element * /main/LATEST

That would create a branch for any file (not just omna.txt) inside /test_ari/karthik, as well for any new file (the /main/0 selection rule).

Since you view would always refers to .../karthik_9/LATEST, you can then apply your label at any time, setting it on the LATEST of karthik_9.

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