I have cloned a remote repository and modified a few of the files locally. I want to update my local working copy with any new changes done at the remote repository. As this is "read-only" (no updates wanted) my goal is to merge any changes from the remote to my local changes.
I thought the proper command for doing this was just "merge". However after issuing that in bash I get the following response:
$ git merge
error: merge is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm '
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
Could someone please help me out of this Git mess? All I want to do is update my local files with the remote changes and if possibly merge any files that's been updated both locally and remotely.
What does "merge is not possible because you have unmerged files." means?