Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
On Wed, 27 Jun 2007 09:42:39 +0100, Nuno Rocha wrote: > Hi, > > ok, I think I've figured it out but nonetheless I'll write here a sequence > of commands and ask if I've understood the situation correctly. > > Here it goes: > 1 - cvs -d $CVSROOT checkout -d c:\checkouts -- > test_directory\test1\dummy.txt (here everything goes fine) > 2 - cvs -d $CVSROOT checkout -d c:\checkouts -- > test_directory\another_test\another_dummy.txt (here the warning message > appears and nothing is checked out) > Hi Nuno, I'm with you now. You're right you can't checkout from two module folders into the same folder like you're doing. However, you can use the -N option to do what you're trying. You'll end up with your folder structure in the sandbox but that's probably better. It will help make it clear where the files came from. cvs -d $CVSROOT checkout -N -d c:\checkouts test_directory\test1\dummy.txt cvs -d $CVSROOT checkout -N -d c:\checkouts test_directory\\another_test\another_dummy.txt This will create a folder test_directory in c:\checkouts. Underneath test_directory you'll have test1 and another_test folders. In those folders will be the files. I think that's as close as you're going to get to having muliple files from the different modules in the same folder. HTH, Rick