rakesh_parashar
rakesh_parashar

Reputation: 829

Gerrit - find the review comments globally

Is there any way to globally search review comments, given by other user. I tried message:"some word to search" in the gerrit search engine, however this is not the right way to find. I need to search using some common known string, like "remove this extra line", it should show all the matching review comments given by any user and should populate all such stories.

Upvotes: 3

Views: 1550

Answers (1)

uncletall
uncletall

Reputation: 6842

You should search using comment:text instead of 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.

Upvotes: 3

Related Questions