Reputation: 1881
So when I try to do git add
git doesn't include it because it thinks it is unmodified. But just 10 seconds before, I modified it in visual studio C# 2010 express and saved it. Although git still thinks it is unmodified. But if I edit it with notepad++(I'm sure any other program would work too) it will add it to the list and commit it. SO is there an option in visual studio or git? This is really annoying as it also includes the compiled dll which I can't edit.
Thanks in advance.
Upvotes: 1
Views: 75
Reputation: 1323793
One way to work around that is to install the Git Source Control Provider, which will be mmore aware of any file modification with a solution.
Its pending change view should be accurate.
Upvotes: 1