disclaimer: By Git, I mean 'I' messed up.
Earlier, I wanted git-gui
to show me the diff
for which it thinks are binary files.
So I made some changes to my .\.gitattributes
*.ini text
*.inc text
But it didn't work. Then I made some changes to my .\.git\info\attributes
*.ini text
*.inc text
*.inc crlf diff
*.ini crlf diff
and it worked.
But now when I go back to previous commits it messes up...
This is how it should look:
It doesn't happen in all the files. EDIT: It happens only in files that have any special characters in them.
Q: Is it the issue with the commits itself or just some setting?
Q: Can I recover?