I have a common issue with Git : I am working on Linux , and my colleagues are working on Windows.
When I do a git status, git tells me all files in my workspace have been modified (I guess because of the eol)
I would like git to show me only the files that I have really changed in my workspace.
How can I do that?
I have tried :
git config --global core.autocrlf false
or changing .gitattributes file , but I can't get anything working.