Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2022 source control not showing changes

Visual Studio 2022 not showing any change of file in git changes window, although there are some files updates are available. Whereas GIT GUI is showing all the changes in the repository.

Once I open the repository in GIT GUI all changes are also begin to display in Visual Studio git changes window.

like image 710
Shyam Narayan Avatar asked Jan 27 '26 23:01

Shyam Narayan


1 Answers

visual studio 2022 shows "error parsing the git status output.". It is maybe because of mismatched versions of git or visual studio.

as a workaround, in "Package Manager Console" you can run this command:

git status

after that, visual studio shows your changes, and you can commit them!

like image 80
user3770256 Avatar answered Jan 29 '26 11:01

user3770256