I'm used to do git push from my machine to a git repository.
Then in remote server I do git pull from the same git repository.
Today a mentally challenged individual has messed with the files in server.
git pull origin master
U index.html
U static/css/app.css
M static/js/app.js
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'
I tried everything. Git reset, git hard reset, git rm those files, manually deleting those files. How can I fix this issue easily? I need to pull from master and I'm late already.
The solution in the provided link is unclear/doesn't work.