I'm still confused with all Git options :-(
I have a local repository and I want to update it on a daily basis with latest on a branch.
There are no changes in it so I just ran this every day
git pull origin develop
but for some reason I get this error so I guess pull is a bad option, I also don't want to delete and clone it every day
error: Pulling is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm <file>'
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
Which command I should use ?