On Mon, 2007-06-04 at 17:13 +0100, Robert Osfield wrote: > Hi Jeremy, > > Is it possible to set svn to generally ignore CMake files? It seems > individually setting ignore is a bit overkill, and not helpful for > when you create new directories. I've just scanned the online svn > book and it looks like it should be possible, but its not entirely > clear what steps I need to take. I wish I had more time to go learn > it properly...
If my understanding is correct (and I'm pretty sure it is), there isn't a global way to ignore any groups of files in the project itself. Each user can edit ~/.subversion/config to artificially ignore them, but it's only per-user (which may be all we need, really). You might be able to create an svn auto-props rule that says something like: "Every time I create a new directory, set these properties foo and bar on it." ...but I don't think you can put a rule in the root of a project and have it recursively modify every directory therein, not when SVN treats each directory as it's own "thing" and nothing is really designed to traverse upwards through the tree (as far as I'm aware?). > Robert. > _______________________________________________ > osg-users mailing list > [email protected] > http://openscenegraph.net/mailman/listinfo/osg-users > http://www.openscenegraph.org/ > _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
