Home > other >  visual studio does not show git history
visual studio does not show git history

Time:06-17

I have recently faced on a error . it is so weird . I can see whole logs in git bash but I cannot see them in Visual studio 2022.

in the attached picture, you can see $git log command and the error that I got from visual studio 2022.

enter image description here

please let me know if you know any workarounds.

CodePudding user response:

It's possible there is some sort of minor corruption in the repo. Try opening git-gui from the command line and then selecting "Repository->Compress database".

The idea to try this came from a Visual Studio developer community thread discussing this same issue.

  • Related