You have some unmerged files. So, first do commit or stash the files. $ git commit -am <message> # add and commit $ git pull origin master # pull origin Or, $ git add . $ git stash # remove the files $ git pull origin master
You have some unmerged files. So, first do
commit
orstash
the files.