Reputation: 45115
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
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