0

Eventhough I have made unsaved changes to the README.md file, git status does not reflect modified file and instead says nothing to commit, why is this so?

enter image description here

torek
  • 448,244
  • 59
  • 642
  • 775
user95434
  • 19
  • 2

1 Answers1

1

Git operates on file system level, it does not know anything about your unsaved files in VSCode. Once you save the file, git will notice it as modified.

1615903
  • 32,635
  • 12
  • 70
  • 99