Force Change ALl End Of Line VSCode To LF Git change all crlf to lf for vscode git add -Agit commit -m Commit Message Before Changing End Of Linegit push begin
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"
}