Windows + Git: Change crlf to lf

Vit Tertiumnon
Jul 21, 2022

--

Globally:

git config --global core.autocrlf false
git config --global core.eol lf

In your project directory:

git rm -rf --cached .
git reset --hard HEAD

--

--

No responses yet