Home > Software design >  How to show a VSCode file’s change history that isn’t a got repository
How to show a VSCode file’s change history that isn’t a got repository

Time:05-23

I have a file that is only local, and I wanted to see if there is a way to show the changes or last saves made to the file.

CodePudding user response:

If you keep vscode up to date in recent update devs introduced local history that is independent of git. You can find it by searching for Local History in command pallet (you can access it with CTRL Shift P by default)

CodePudding user response:

You can install an extension named enter image description here

When you click a file, a comparaison with the current version is displayed.

enter image description here

  • Related