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

RE: Re: Creating a drop folder

From: Reedick, Andrew <Andrew.Reedick_at_BellSouth.com>
Date: 2006-07-13 21:21:21 CEST

> -----Original Message-----
> From: Tankko [mailto:tankko@gmail.com]
>
> I think I know what I was doing wrong. I need to specify the revision
> to merge from, I was assuming HEAD would just bring it up-to-date, I
> see now.
>
> But, this brings up the problem of automation. Since SVN doesn't have
> "tags" to just mark a revision number, it's much harder for the script
> to know when the last "drop" was done.
>

Since you will never have merge conflicts, why don't you drop the drop
dir and recreate it, instead of messing with a merge?
        svn rm .../drop
        svn mkdir drop
        svn copy trunk/some/where drop
or keep the dir and delete the contents
        for /f %i in ('svn ls -N .../drop' do @svn rm %i
        svn copy ...

>> (P.S. I am running on windows, so I don't have all the power of
bash)

        Install cygwin (www.cygwin.org) if you need a bash shell and gnu
utils on a windows box. Or use Perl.

*****

The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. 118

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Jul 13 21:23:10 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.