I\'m using Git 1.7.4.1. I want to get the latest version of my code from the repository, but I\'m getting errors ...
$ git pull …. M selenium/ant/build.proper
You have to merge your files first. Do a git status to see what are the files that need to be merged (means you need to resolve the conflicts first). Once this is done, do git add file_merged and do your pull again.
git status
git add file_merged
pull