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

Re: committing local deletions

From: Ruslan Sivak <russ_at_vshift.com>
Date: Thu, 17 Apr 2008 12:25:22 -0400

Ryan Schmidt wrote:
> On Apr 10, 2008, at 6:46 AM, Steven Bakke wrote:
>> If 'svn delete' were able to handle deleting items that are
>> considered missing by svn status, that would be really useful.
>
> svn is able to handle that...
>
>
> $ svnadmin create repo
> $ REPO=file://`pwd`/repo
> $ svn co $REPO wc
> Checked out revision 0.
> $ cd wc
> $ touch foo
> $ svn add foo
> A foo
> $ svn ci -m ""
> Adding foo
> Transmitting file data .
> Committed revision 1.
> $ rm foo
> $ svn st
> ! foo
> $ svn rm foo
> D foo
> $ svn st
> D foo
> $ svn ci -m ""
> Deleting foo
>
> Committed revision 2.
> $
>
>
I think he meant something like this should work, but currently
doesn't: This is a sample script, with some command switches made up to
illustrate how I think it should work.

$ svnadmin create repo
$ REPO=file://`pwd`/repo
$ svn co $REPO wc
Checked out revision 0.
$ cd wc
$ touch foo
$ touch foo2
$ touch foo3
$ svn add --force .
A foo
A foo2
A foo3
$ svn ci -m ""
Adding foo
Adding foo2
Adding foo3
Transmitting file data .
Committed revision 1.
$ rm foo
$ rm foo2
$ rm foo3
$ svn st
! foo
! foo2
! foo3
$ svn ci --force -m ""
Deleting foo
Deleting foo2
Deleting foo3
Committed revision 2.
$

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-04-17 18:59:07 CEST

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.