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

RE: Ignore not working as expected

From: Reedick, Andrew <jr9445_at_ATT.COM>
Date: Wed, 13 Feb 2008 10:55:56 -0600

> -----Original Message-----
> From: Harvey, Edward [mailto:Edward.Harvey_at_patni.com]
> Sent: Wednesday, February 13, 2008 11:04 AM
> To: users_at_subversion.tigris.org
> Subject: Ignore not working as expected
>
> Most likely it's my expectation that's at fault.
>
> Here's what I'm trying to accomplish:
>
> Suppose there's a repository with some tree structure.
> 20G /
> 18G /documentation
> 17G /documentation/library
> 1G /documentation/procedures
> 2G /src
>
> If I want to checkout / but I want to neglect /documentation/library,
> so
> I'm checking out a total of 3G instead of 20G
>
> I've tried everything I could think of, with the svn:ignore property,
> but never achieved the desired result. Any suggestions?
>

Plan B: 'svn update -N' -N will do a non-recursive checkout, but it
requires a bit more effort.

svn co -N / # leaves documentation and src empty
svn update src # full checkout of src
svn update -N /documentation # leaves library and procedures empty
cd documentation
svn update /documentation/procedures # full checkout of procedures

End result, library is empty, but everything else is checked-out.

*****

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. GA623

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-02-13 17:56:39 CET

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.