0
votes

Using Azure DevOps, I submitted a Pull Request. The OverView says there are merge conflicts, but offers no way to edit/resolve them. The View merge changes item on the "three dots" menu is greyed out.

Any ideas as to why the PR is presenting this way and/or what I can do?

General answer for graphical webhosts of repos (read GitHub). Your conflict(s) are likely too complicated to be displayed in their GUI. You might have to checkout and pull this branch in a terminal command line and solve the conflicts there.TheIceBear
Do you have the Pull Request Merge Conflict Extension (marketplace.visualstudio.com/…) installed? It provides a way of resolving conflicts from within the pull request (c.f. stackoverflow.com/questions/63473042/… or stackoverflow.com/questions/64722185/…)Andrew McClement