我正在使用Git 1.7.4.1。我想从存储库中获取最新版本的代码,但出现错误...
$ git pull
….
M selenium/ant/build.properties
….
M selenium/scripts/linux/get_latest_updates.sh
M selenium/scripts/windows/start-selenium.bat
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>' as appropriate to mark resolution, or use 'git commit -a'.
我已经删除了该工具抱怨的文件的本地副本,但是仍然出现错误。如何从远程仓库签出最新版本?-戴夫

git fetch。我没有遇到冲突,但是这是我获得最新版本代码的方式。