Reputation: 11
I am working in a distributed team and it is not possible to have a review and approval of each commit quickly as the team members who are supposed to review are located overseas.
The team working at my end, push the code to Gerrit for review. Let us say user1 pushed 5 commits and user2 pushed 10 commits.
My question is me being user3, can I get all these 15 commits without pulling each commit individually using the commit id??
Upvotes: 1
Views: 127
Reputation: 22321
Yes, use the "Search" field.
For example, to find all open changes from user1 or user2:
(owner:user1 OR owner:user2) AND status:open
Take a look here to learn more about the search feature.
Upvotes: 1