在TortoiseHg Workbench中按多个条件过滤

时间:2017-01-05 16:56:42

标签: mercurial tortoisehg

是否可以在过滤器中组合多个条件?例如。查找某些作者的所有修订版以及.js文件已修改的位置。

我可以按作者user('Joe')或文件扩展名file('**.js')过滤修订,但不知道如何合并这些修订。

enter image description here

1 个答案:

答案 0 :(得分:8)

在一些Trail和Error之后,发现它:

将条件与AND结合:

user('Joe') & file('**.js')

user('Joe') and file('**.js')

将条件与OR结合:

user('Joe') | file('**.js')

user('Joe') or file('**.js')

使用ANDOR(大写)加入条件无效(无效的令牌错误)。

For TortoiseHg 3.7.3版