mim*_*imo 3 mercurial tortoisehg
是否可以在过滤器中组合多个条件?例如查找某些作者的所有修订版以及修改了.js文件的位置.
我可以按作者user('Joe')或文件扩展名过滤修订版file('**.js'),但不知道如何组合它们.
在一些Trail和Error之后,发现它:
将条件与AND组合:
user('Joe') & file('**.js')
user('Joe') and file('**.js')
将条件与OR组合:
user('Joe') | file('**.js')
user('Joe') or file('**.js')
使用AND和OR(大写)连接条件将不起作用(无效的令牌错误).
对于TortoiseHg版本3.7.3