Re: OT: Subversion folder cleanup

  1. Use the subversion export command to create a tree free of svn
    subdirs;
    it’s explained very well in the documentation.

  2. Or copy to another dir tree and: here’s a script I used to use to get
    rid
    of .cvs stuff, you can change it if you like:

find . ( ( -name CVS -type d ) -o -name .cvsignore ) -exec
rm -rf {} ;

Victor K.
http://awebfactory.com.ar

On 3/17/06, [email protected] <