crlf to lf in all files in vs code
git config core.autocrlf false git rm --cached -r . git reset --hard
Here is what the above code is Doing:
1. Set the default behavior for line endings to be false.
2. Remove all files from the index.
3. Reset the index to match the committed state.