[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: removing .svn files from local copy

From: Nico Kadel-Garcia <nkadel_at_comcast.net>
Date: 2006-05-27 18:43:33 CEST

Peter Michaux wrote:
> Hi,
>
> I have a local copy of a repository. The repository no longer exists
> so I cannot do a simple svn export to get a clean copy. How can I
> remove all the .svn files from my local copy without removing each one
> by hand? I'm using OS X.
>
> Thanks,
> Peter

I'm not sure about OS X command line tools, but under Linux/BSD/UNIX/etc.,
this would work:

    find dirname -name .svn -exec rm -rf {} \;

There are also fun and games due to resource forks for OS X: you might want
to look into that first.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sat May 27 18:44:21 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.