How to resolve merge conflict in pull request in VSTS?

Update Microsoft just added browser based merges. This may get you out of a pickle for small conflicts. And offers improved visualizations of the different scenarios as of Sprint 150. For more complex situations: You have two options to resolve the conflict, reverse-integrate the changes from the target branch (which creates additional merge commits), or … Read more

How do I fix a merge conflict due to removal of a file in a branch?

The conflict message: CONFLICT (delete/modify): res/layout/dialog_item.xml deleted in dialog and modified in HEAD means that res/layout/dialog_item.xml was deleted in the ‘dialog’ branch you are merging, but was modified in HEAD (in the branch you are merging to). So you have to decide whether remove file using “git rm res/layout/dialog_item.xml“ or accept version from HEAD (perhaps … Read more

Why does git say “Pull is not possible because you have unmerged files”?

What is currently happening is, that you have a certain set of files, which you have tried merging earlier, but they threw up merge conflicts. Ideally, if one gets a merge conflict, he should resolve them manually, and commit the changes using git add file.name && git commit -m “removed merge conflicts”. Now, another user … Read more