0

Is there a way in the Gerrit Web UI to show a list of change-set's that currently have a status of "Merge Conflict"?

Perhaps using a search bar query?

I tried these queries:

  • status:"Merge Conflict" -> showed all merged changes
  • status:Merge Conflict -> syntax error
Machavity
  • 30,841
  • 27
  • 92
  • 100
Jonathan.Brink
  • 23,757
  • 20
  • 73
  • 115

1 Answers1

1

Use the search bar like in the following examples.

To search for all open changes with conflicts:

status:open AND NOT is:mergeable

To search for all open changes with conflicts excluding draft changes:

status:open AND NOT is:mergeable AND NOT is:draft