Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是我们团队中唯一的前端开发人员,并且我希望在其他开发人员之一推送涉及某些“前端”文件(例如,*.html 或 *.css)的评论时收到通知。这可能吗?
我们正在使用 Gerrit v2.9.4。
您可以通过以下搜索找到包含 html 文件的任何更改(根据docs):
path:^.*\.html$
在我的设置(Gerrit 2.12.2)中,我必须使用(尾随 $,我有一个错误):
path:^.*\.html
请注意,您将搜索与布尔运算符(如AND和)结合使用OR。例子:
AND
OR
path:^.*\.html OR path:^.*\.css
如果您想收到通知,您可以将此过滤器保存在您的设置中(设置 > 观看的项目)。有关更多详细信息,请参阅此文档。