the only two valid reasons:
- the files are already CRLF and fixing it means the worst git diff imaginable (ask me how I know)
- some terrible tool requires CRLF
- the files are already CRLF and fixing it means the worst git diff imaginable (ask me how I know)
- some terrible tool requires CRLF
Comments
git commit -m "Renormalize line endings"
git rev-parse HEAD >> .git-blame-ignore-revs
then (for good):
git config blame.ignoreRevsFile .git-blame-ignore-revs
OR (just once):
git blame --ignore-revs-file .git-blame-ignore-revs