2
I did clone a large project but many of the files were in unstage and Deleted. I realized it was the file name encoding so I set it in utf-8 like this:
git config gui.encoding utf-8
After that the file names went back to normal but some didn’t work, they were considered deleted by git:
I realized that the same were to be added but with the correct name:
Given this I can’t fix my branch!
It’s just the name reference in GIT, it considers that you deleted the files with wrong name and is adding the files with the correct name, don’t worry you won’t lose your files.
– Maycon F. Castro
I understand, but I need to handle these files, but since their reference is broken, I can’t control it. I need to correct the name reference.
– Igor Gabriel
I think when you commit the references will be correct, with the correct names.
– Maycon F. Castro
Most files did, but some remained deleted. I tried to check out the last version and rename but it didn’t work.
– Igor Gabriel