Re: Sparse checkouts automation

2010-11-11 Thread Klaus Ganser
On Wed, Nov 10, 2010 at 3:10 PM, San Martino wrote: > Is there a way with one command to sparse-checkout al the elements > of the path to file1.txt (included) but no more than those elements ? See the following thread: http://mail-archives.apache.org/mod_mbox/subversion-users/201011.mbox/%3caan

RE: Sparse checkouts automation

2010-11-11 Thread Giulio Troccoli
rg > Subject: Sparse checkouts automation > > Hello, > > Suppose you have a layout like this: > /trunk > /dir1 >/dir1_1 > file1.txt > file2.txt >/dir1_2 > > Is there a way with one command to sparse-checkout al the > el

Re: Sparse checkouts automation

2010-11-10 Thread Daniel Becroft
On Thu, Nov 11, 2010 at 9:10 AM, San Martino wrote: > Hello, > > Suppose you have a layout like this: > /trunk >/dir1 > /dir1_1 > file1.txt > file2.txt > /dir1_2 > > Is there a way with one command to sparse-checkout al the elements > of the path to file1.txt (in

Re: Sparse checkouts automation

2010-11-10 Thread Felix Gilcher
Hi, there's no way to do that, not even with multiple commands. You can only decide to have all direct children for a directory (depth=immediates) or none (depth=empty). So you'll always have file2.txt alongside file1.txt. Other than that, there's no way that I know of that allows checking out

Sparse checkouts automation

2010-11-10 Thread San Martino
Hello, Suppose you have a layout like this: /trunk /dir1 /dir1_1 file1.txt file2.txt /dir1_2 Is there a way with one command to sparse-checkout al the elements of the path to file1.txt (included) but no more than those elements ? That is, the local working c