How do you set to ignore folders and all it's subdirectories in CVS?
It's getting pretty annoying when it commits every file in my \bin, \obj or \TestResult folders.
Tried *\TestResult in the ignore list to no avail
How do you set to ignore folders and all it's subdirectories in CVS?
It's getting pretty annoying when it commits every file in my \bin, \obj or \TestResult folders.
Tried *\TestResult in the ignore list to no avail
you can create a .cvsignore
file in your directories. See here for details
In your case the .cvsignore
of your project root would look like
bin
obj
TestResult