Reputation: 173
Everything was working fine for 3 months, now suddenly when I open Visual Studio, it adds all untracked files in the root solution folder to Hg, i.e. bin and obj folders included.
Steps:
I edited the .hgignore file in the root folder to include "bin" and "obj", but that is being ignored by VS.
Any ideas why this is happening?
Upvotes: 2
Views: 877
Reputation: 8078
Try editting your ignore file to include the following instead :
[Bb]in/
[Dd]ebug*/
obj/
[Rr]elease*/
Sometimes the capitalization can change (I can't remember exactly what causes it..)
Upvotes: 4