I created a repository from existing files. Inside the set of files, was one with the name "español.gif". Now, everytime I do
$ git status
I receive an error:
$ path/espa�ol.gif: Protocol error
I tried removing the files using
$ git rm path/espa�ol.gif
$ git rm --cached path/espa�ol.gif
$ git rm path/espa?ol.gif
$ git rm --cached path/espa?ol.gif
but, nothing changes, it keeps saying "Protocol error".
If I try a merge, I receive:
error: Your local changes to 'path/espa�ol.gif' would be overwritten by merge. Aborting.
Is there any way to remove the file from the index, and stop having this error?
Edit: I solved the problem deleting the Git repository and creating it again, without any file with an Spanish character in the name.