Setup Git on Windows
After installing Git on Windows, it's recommended to disable
autocrlf
and set
eol
to UNIX-style
lf
:
git config --global core.autocrlf false & git config --global core.eol lf
If there's been git clones, this command needs to be run on each of the folder:
git rm --cached -r . & git reset --hard