I\'m using Ubuntu 13.10 x64, and I am working on a project that some developers are using Windows , I recently changed the git config core.eol to \"lf\" and
core.eol
You need to add all files that git status displays as modified:
git status
git add file1 git add file2
And then commit your changes :
git commit
This will keep your local files as is, but will autocrlf them on the remote repository.
autocrlf