I am trying to get git to not change any line endings whatsoever for any operation. Unfortunately, it seems to do so not matter what. I have reduced it down to the followi
One simple solution is:
git config --global core.autocrlf falsegit add --renormalize .If there are conversions automatically done, that mean a .gitattributes core.eol directive is there within the repo.
With Git 2.8+ (March 2016), check if there are still eol transformation with:
git ls-files --eol