Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CVS Ignore Directories

Tags:

How do you set to ignore folders and all its 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.

like image 541
Jonn Avatar asked Sep 15 '10 23:09

Jonn


1 Answers

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 
like image 89
Peter Tillemans Avatar answered Nov 13 '22 05:11

Peter Tillemans