Luke Puplett
Luke Puplett

Reputation: 45115

Why do I see changes in Git Status and not in Visual Studio?

In Git, I run git status and I have about 20 modified files in red.

In Visual Studio 2012 using the new Visual Studio Tools for Git, I see no changes.

Why?

Upvotes: 1

Views: 280

Answers (1)

Carl Norum
Carl Norum

Reputation: 224864

My first guess (as discussed in the comments above) is that you have different whitespace handling configurations in the two different git programs you're running. You'll need to figure out which one is right and fix the other one to match.

Upvotes: 1

Related Questions