I have a problem with Eclipse and EGit.
I have a file that has some conflicts. I tried to merge it manually, and after this operation I tried to click "mark as merged".
So I pull, but the pull doesn't have any effect.
What do I have to do?
I have a problem with Eclipse and EGit.
I have a file that has some conflicts. I tried to merge it manually, and after this operation I tried to click "mark as merged".
So I pull, but the pull doesn't have any effect.
What do I have to do?
"Mark a merged" means the file is locally modified.
If the pull was done before, a new pull won't do anything (the remote code was already fetched), and the conflicted merge has just been resolved.
You should add that file to the index, commit and push, not pull.
See "How to resolve conflicts in egit" as an example.