Git is refusing to update for the server. It keeps complaining:
Pull is not possible because you have unmerged files. Please, fix them up in the work tree, and then use 'git add/rm ' ...
I have deleted the local files that are supposed to be causing the problems. I have performed a git reset --hard HEAD
. I also performed the git fetch origin
from this question with the reset. The files no long exist, but the git pull
continues to fails.
This solution is kind of ridiculous (no offense to the poster). All I want Git to do is get the remote files. I can't imagine 20 or 30 steps are required just to sync with a remote server.
How do I force this stupid program to take the files form the remote server?
Or is deleting the directory and performing a fresh checkout the easiest solution?