WestCoastProjects
WestCoastProjects

Reputation: 63062

Intellij no longer showing "Resolve Conflicts" dialog?

I have routinely used the (excellent) Intellij/Pycharm "Resolve Conflicts" available by right clicking in any source file in the project and accessing from the "Git" submenu. However the Git menu no longer shows it:

enter image description here

We can confirm that git is an "unresolved conflict" state by running git status that returns

fatal: Exiting because of an unresolved conflict.

This has happened several times in different git repos now. I am on Intellij Ultimate 20.2.

Update I just installed latest Intellij Ultimate 20.3: same issue.

Upvotes: 4

Views: 12926

Answers (4)

3AKOBAH
3AKOBAH

Reputation: 152

I had similar problem because I used "Pull" option instead of "Merge". So be sure you use "Merge".

enter image description here

Upvotes: 0

user9534568
user9534568

Reputation: 13

On mac I had issue with not agreed terms of the Xcode's software license agreements. It popped up after I hit refresh on Intellij Git window: Intellij Git

Simply had to open console and agree with terms after running command sudo xcodebuild -license

After that "Resolve Conflicts" was visible again

Upvotes: 0

serv-inc
serv-inc

Reputation: 38177

You can always switch to Commit in the left column and click on resolve there:

commit thingy with resolve option

Upvotes: 4

WestCoastProjects
WestCoastProjects

Reputation: 63062

It's now buried under a submenu. From @RuslanKuleshov (Jetbrains employee):

enter image description here

The issue is here: https://youtrack.jetbrains.com/issue/IDEA-257569 ,

Upvotes: 2

Related Questions