Force Change ALl End Of Line VSCode To LF
Git change all crlf to lf for vscode
git add -A
git commit -m "Commit Message Before Changing End Of Line"
git push
begin changing end of line globally
git config core.autocrlf false
git rm --cached -r .
git reset --hard
Change VSCode settings.json
Option
{
"files.eol": "\n"
}
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.