I use IntelliJ Idea with Git.
When I pull from repository, I get following error:
”
…CONFLICT (content): Merge conflict in server…”
Then pull fails.
Questions are:
- Does IntelliJ Idea displays any log of what happend exactly? How do I see it?
- How can I continue merge manually from the same point (where it failed)?
Looks like you’ve got a conflict during merge. Go to the
ChangesView and see if there are any unmerged files. Then invokeResolve Conflicts, choose what to take from your changes and theirs, and commit.You may also want to try
Update Projectfor more intelligent pulling from the tracked branch.