在Plastic" Branch Explorer"

时间:2014-10-07 09:35:09

标签: regex plasticscm

是否可以在BranchExplorer的搜索框中指定我不想选择" subbranches",但是具有给定名称的分支?

例如,我有一个分支/main/ver1/和许多子分支/main/ver1/task001/main/ver1/task002,...

当我将/main/ver1/main/ver1/放入搜索框时,它会跳过所有子分支task001task002(当我想要最新区分时,这是没用的分支/main/ver1/task122的变更集,其最新变更集为ver1基本分支或交换机工作空间到基本分支)

search box

在正则表达式的单词中,我希望看到.*/ver1[^/]分支。

1 个答案:

答案 0 :(得分:0)

  • 从分支视图: 在这种情况下,单击“高级”按钮,您将能够配置自定义查询:

例如:

find branch where name like '%ver1' 

find branch where name='task122' 

您可以在我们的“cm find”指南中找到更多示例:

http://plasticscm.com/documentation/cmfind/plastic-scm-version-control-query-system-guide.shtml

  • 从Branch Explorer视图:

您可以开车到“过滤器和条件格式”,然后输入您的自定义查询

例如:(不包括“cm find”)

name like '%ver1'
name='task122' 

您可以使用包含,排除和格式规则。

PD:你可以从两个视图中执行diff,update ...