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

Re: remove all .svn data from a working copy?

From: Damir Shayhutdinov <damir_at_tecon.ru>
Date: 2006-02-03 09:27:01 CET

On Thu, Feb 02, 2006 at 11:20:07PM -0500, Jeff Kowalczyk wrote:
> Is there a subversion command that will shed all .svn checkout information
> from a working copy?
>
> I'm interested in this to make single-step release directories that
> are exactly the same file content as their /tag at revision X.

One solution is to remove all .svn directories by following command

find -type d -name .svn -print0 | xargs -0 rm -rf

Or use svn export instead of svn checkout to get the sources.

-- 
WBR,
Damir Shayhutdinov
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Feb 3 09:31:20 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.