From the documentation here: https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#__code_core_autocrlf_code ,
I can conclude that core.autoclrf=true
does exactly what core.autoclrf=input
(which is to convert files to LF when adding to the index) plus converting to CRLF on checkout.
However the doc is not explicit about this, so I would like to validate whether this is true.