I have setup Git so it doesn\'t commit inconsistent line endings. The problem with that is a whole pile of files appear modified even though they are not. What do I type to
Only thing I can think of is to check if core.safecrlf is set to warn.
core.safecrlf
warn
git config --get core.safecrlf
I think possible values are true, false, and warn. I believe that setting to false will resolve the warning, though it may not be a good idea.
true
false