I am using Git in VS2013 and my changed files are not showing up in the Changes window of VS.
When I have changed a file but before I have saved it to disk it does show
I came across this issue when adding a new but existing project to my solution in VS2015. The problem was that the new project used a local db file (an .sdf as well as an opendb) that got added to the root of the solution. When trying to stage uncommitted changes, it was failing because it couldn't access the opendb file while vs had a hold of it.
I found this out by using git for windows and trying to stage my changes. Once I added the *opendb
to my .gitignore and reopened Visual Studio, it found all my other changes.