Gerrit——全局查找评论评论
Gerrit - find the review comments globally
有没有办法全局搜索其他用户给出的评论。我在 gerrit 搜索引擎中尝试了 message:"some word to search"
,但这不是正确的查找方式。我需要使用一些常见的已知字符串进行搜索,例如 "remove this extra line"
,它应该显示任何用户给出的所有匹配评论,并且应该填充所有此类故事。
您应该使用 comment:text
而不是 message:text
进行搜索
message:'MESSAGE'
Changes that match 'MESSAGE' arbitrary string in the commit message body.
comment:'TEXT'
Changes that match 'TEXT' string in any comment left by a reviewer.
有没有办法全局搜索其他用户给出的评论。我在 gerrit 搜索引擎中尝试了 message:"some word to search"
,但这不是正确的查找方式。我需要使用一些常见的已知字符串进行搜索,例如 "remove this extra line"
,它应该显示任何用户给出的所有匹配评论,并且应该填充所有此类故事。
您应该使用 comment:text
而不是 message:text
message:'MESSAGE'
Changes that match 'MESSAGE' arbitrary string in the commit message body.
comment:'TEXT'
Changes that match 'TEXT' string in any comment left by a reviewer.