Hi Guys: I sent and email some weeks ago regarding to "cvs co -d . oracle32/make" and the server send me this error cvs server: existing repository /home/kmcvs/src does not match /home/kmcvs/src/oracle32 cvs server: ignoring module oracle32/make
I was looking into in the archives files and I saw that someone else had the same problem some time ago, but I was looking for the answer but I never found it, so if someone else know the answer please let me know. BTW. I'm using Concurrent Versions System (CVS) 1.11 (client) and Concurrent Versions System (CVS) 1.10 (server) Thanks. Moises. > From: ari gold [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, November 23, 2000 10:27 AM > > the problem with this, is that it creates a new path.. for example, if i > have a directory 'dir' and a file in it 'foo' and i remove foo, dir is > empty > (natch).. > > if i then do, inside of 'dir', 'cvs co dir/foo' it will create another > directory 'dir' inside of 'dir'... > > im looking to just create the file 'foo' by itself... > You might want to try 'cvs -H checkout' which gives you a little help on the switches cvs checkout understands. Among them you'll find '-d dir'. I think 'cvs co -d . dir/foo' will give you ./foo When xxx is a cvs command, 'cvs -H xxx' gives you a usage for 'cvs xxx'. cvs co -d <dir> <project name> donald On Fri, Dec 01, 2000 at 10:53:44AM +0900, Antony Stace wrote: > Hi Folks > > When I check something out of CVS it always checks the files out like > > <project name>/file1 > <project name>/file2 > <project name>/file3 > . > . > . > > with the files being inside a directory of the <project name>. Is there > anyway I can check them out like > > file1 > file2 > file3 > . > . > . > > without having the files inside the directory of the <project name> ? > > Cheers > > Antony I just tried cvs co -d . watermeter and got an error wtr005:/tmp/wtr> cvs co -d . watermeter cvs server: existing repository /usr/local/cvsroot does not match /usr/local/cvsroot/watermeter cvs server: ignoring module watermeter and to show cvs is infact working.... wtr005:/tmp/wtr> cvs co watermeter cvs server: Updating watermeter U watermeter/Imakefile U watermeter/Makefile U watermeter/Makefile.am U watermeter/Makefile.in U watermeter/README U watermeter/wtridef.h U watermeter/wtrinc.h U watermeter/wtrinit.c U watermeter/wtrmain.c U watermeter/wtrsend.c wtr005:/tmp/wtr> What am I doing wrong? Donald Sharp wrote: The -d option doesn't work inside a already existing sandbox. donadl On Wed, Dec 06, 2000 at 10:12:00AM +0900, Antony Stace wrote > > cvs co -d <dir> <project name> > > donald > On Fri, Dec 01, 2000 at 10:53:44AM +0900, Antony Stace wrote: > > Hi Folks > > > > When I check something out of CVS it always checks the files out like > > > > <project name>/file1 > > <project name>/file2 > > <project name>/file3 > > Specify the --help option for further information about CVS > [antony@wtr wtr]$ > Donald Sharp wrote: > > > > Ok- > > > > donsharp-u5:56> mkdir wtr > > donsharp-u5:57> cd wtr > > donsharp-u5:58> cvs co -d . a > > cvs checkout: Updating . > > U bar.c > > U foo.c > > donsharp-u5:59> cvs co a > > cvs checkout: Updating a > > U a/bar.c > > U a/foo.c > > donsharp-u5:60> ls > > CVS a bar.c foo.c > > donsharp-u5:61> ls a > > CVS bar.c foo.c > > donsharp-u5:62> > > > > What exactly are you doing? ( Could you please include output from > > a sample run? ) What version of cvs are you using? > > > > doanld > > . > > . > > . > > > > with the files being inside a directory of the <project name>. Is there > > anyway I can check them out like > > > > file1 > > file2 > > file3 > > . > > . > > . > > > > without having the files inside the directory of the <project name> ? > > > > Cheers > > > > Antony > > > > _______________________________________________ > > Info-cvs mailing list > > [EMAIL PROTECTED] > > http://mail.gnu.org/mailman/listinfo/info-cvs > > _______________________________________________ > Info-cvs mailing list > [EMAIL PROTECTED] > http://mail.gnu.org/mailman/listinfo/info-cvs _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
