> -----Original Message-----
> From: michael [mailto:cs_at_networkingnewsletter.org.uk]
> Sent: Tuesday, January 15, 2008 4:41 PM
> To: users_at_subversion.tigris.org
> Subject: Re: users Digest of: thread.15530
>
>
> I too would like something like CVS' release. ie a ''clean'' way to
> remove a working copy that, say, checks everything's been commited and
> then removes the given directory locally and removes all notes in the
> repository 'admin' that I'd checked out the project. (I presume there
> is
> some 'admin' mechanism that tracks who's checked out what?)
>
Run 'svn status' to get a list of outstanding items in your
workspace. Resolve any issues. If you use locks, then you would need
to 'svn unlock' your locks. There's no built-in automated way of doing
so since locks aren't normally used. Run 'svn status' again because you
just know you've missed something. Then run 'rm -rf' or deltree or 'rd
/s/q' or 'degauss' on the workspace.
Unlocking stuff you locked in this workspace:
svn status | grep '^.....K' | sed 's/^...... //' | xargs svn
unlock
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-01-15 23:00:06 CET