Open
Description
Many repos, use a line ending of \n
.
When using Windows, these seem to be converted. Often, this isn't an issue with actual code, but has messed up testing. The following seems to fix it, run before the checkout action:
git config --system core.autocrlf false
git config --system core.eol lf
If this could be an option with 'checkout', some might find it helpful...