I am working with Visual Studio 2013 Update 4 and git (hosted on Visual Studio Online). I have 2 local commits and 2 commits in a remote branch. There are no local changes to commit:

When I try to execute Pull (or Fetch) in Visual Studio, I get an error:
An error has occurred. Detailed message: 1 conflict prevents verification

Yes, there is a conflict, I have to merge. And in accordance with this page I need to offer a link to resolve the conflict. But I do not see this in VS.
I can unite outside of VS, but it is not. At the same time, my worker working on the same setup can merge without problems. What is wrong with my VS?
ps I have msysgit installed, which may be confused in the configurations. According to this post, my global .gitconfig looks like this:
[user] mail = trailmax@stackoverflow.com name = trailmax email = trailmax@stackoverflow.com [core] excludesfile = C:\\Users\\trailmax\\Documents\\gitignore_global.txt autocrlf = true editor = \"C:/Program Files (x86)/GitExtensions/GitExtensions.exe\" fileeditor [diff] tool = vsdiffmerge [difftool "vsdiffmerge"] cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\Common7\\IDE\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t keepbackup = false trustexistcode = true [merge] tool = vsdiffmerge [mergetool] prompt = true [mergetool "vsdiffmerge"] cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\Common7\\IDE\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m keepbackup = false trustexistcode = true [credential]
git git-merge merge-conflict-resolution visual-studio-2013
trailmax Dec 13 '14 at 11:23 2014-12-13 11:23
source share