I'm having a weird issue with Git inside a VS Code Dev Container: when I open a project folder, Git shows a bunch of already committed files as "modified" (even though I didn’t change anything)
But as you can see, there are no actual changes
I've tried to do
git config core.autocrlf false
git config core.filemode false
But nothing changed

git diffto get git to show you the differences. Editors can get confused, especially about line endings..gitattributesfile with any line ending settings? 2) After changing theautocrlfsettings, have you triedgit add --renormalize <files_showing_as_modified>?