I am trying to do a git pull origin master from my server but keep getting the error:
git pull origin master
Please move or remove them before you can merge.
I just faced the same issue and solved it using the following.First clear tracked files by using :
git clean -d -f
then try git pull origin master
You can view other git clean options by typing git clean -help
git clean -help