1

This is how it was

enter image description here

This is what it is now

enter image description here

I can't go back. What do I click? What do I do? I closed the Vscode and opened it again, but that also didn't work.

Antonio Petricca
  • 8,891
  • 5
  • 36
  • 74
Roman Regmi
  • 83
  • 2
  • 9
  • 1
    That's not a problem You initialized `git` on that folder, which means you can now commit and keep track of your file changes. Don't commit changes if you don't want to. – Panagiotis Kanavos May 27 '21 at 14:36

2 Answers2

7

You initialized a Git repository. Git is a version control system. If you do not need Git and want to revert the initialization, you can just remove the folder named .git (note that this folder is probably hidden).

Elias Holzmann
  • 3,216
  • 2
  • 17
  • 33
2

You should simply remove the .git folder.

Antonio Petricca
  • 8,891
  • 5
  • 36
  • 74