TTUser1
TTUser1

Reputation: 11

In Gerrit, can I someway have all the commits that have not been reviewed/approved from the repo?

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

Answers (1)

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

Related Questions