With Git, when using the autocrlf = true
flag, a warning is still given when line-endings are changed.
I understand what the warning is for, and how to turn off the line-ending flag, but how do I turn off the warning itself?
You can turn off the warning with
git config --global core.safecrlf false
(This will only turn off the warning, not the function itself.)