You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Dennis Schridde <de...@gmx.net> on 2008/05/12 17:04:23 UTC

Feature request: svn cleantree

Hello!

I would like this snippet to be integrated into subversion:
for file in $(/usr/bin/svn status --no-ignore | awk '{print $2}') ; do
  echo "Deleting ${file}"
  rm -r ${file}
done

Thanks,
Dennis

Re: Feature request: svn cleantree

Posted by Karl Fogel <kf...@red-bean.com>.
Dennis Schridde <de...@gmx.net> writes:
> Am Montag, 12. Mai 2008 21:32:16 schrieb Karl Fogel:
>> Dennis Schridde <de...@gmx.net> writes:
>> > I would like this snippet to be integrated into subversion:
>> > for file in $(/usr/bin/svn status --no-ignore | awk '{print $2}') ; do
>> >   echo "Deleting ${file}"
>> >   rm -r ${file}
>> > done
>>
>> Before we do that, were you aware of this?
>
> Sorry, no, I was not aware of that. Is that usually installed?
> If it should be, it might be a bug in Gentoo's ebuild.

Things in contrib don't get installed by default usually, but Gentoo or
any other distribution certainly could install it.  You might want to
prod them about that.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Feature request: svn cleantree

Posted by Dennis Schridde <de...@gmx.net>.
Am Montag, 12. Mai 2008 21:32:16 schrieb Karl Fogel:
> Dennis Schridde <de...@gmx.net> writes:
> > I would like this snippet to be integrated into subversion:
> > for file in $(/usr/bin/svn status --no-ignore | awk '{print $2}') ; do
> >   echo "Deleting ${file}"
> >   rm -r ${file}
> > done
>
> Before we do that, were you aware of this?
Sorry, no, I was not aware of that. Is that usually installed?
If it should be, it might be a bug in Gentoo's ebuild.

--Dennis

Re: Feature request: svn cleantree

Posted by Karl Fogel <kf...@red-bean.com>.
Dennis Schridde <de...@gmx.net> writes:
> I would like this snippet to be integrated into subversion:
> for file in $(/usr/bin/svn status --no-ignore | awk '{print $2}') ; do
>   echo "Deleting ${file}"
>   rm -r ${file}
> done

Before we do that, were you aware of this?:

   $ pwd
   /home/kfogel/src/subversion
   $ svn info | grep URL
   URL: https://svn.collab.net/repos/svn/trunk
   $ find contrib -name "*clean*" -print | grep -v .svn/
   contrib/client-side/svn-clean
   $ 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org