Reputation: 1945
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:
Upvotes: 23
Views: 24756
Reputation: 89
Done.
Upvotes: 2
Reputation: 3855
Looks like you've got a conflict during merge. Go to the Changes
View and see if there are any unmerged files. Then invoke Resolve Conflicts
, choose what to take from your changes and theirs, and commit.
You may also want to try Update Project
for more intelligent pulling from the tracked branch.
Upvotes: 21