I have a maven file mvnw.cmd
in the unstaged files, BUT there are no real modification. It looks to me, it has something to do with EOL, because every line has been marked to remove and add.
I tried already to delete and get out it again from GIT. I tried to stash it, but it still remains as unstaged file.
The .gitattributes
file:
# Auto detect text files and perform LF normalization
* text=auto
# Make sure that the line ending style ist set to Linux for shell scripts
*.sh eol=lf
# Make sure that the line ending style ist set to Windows for bat scripts
*.bat eol=crlf
*.cmd eol=crlf
Thank you in advance.