Dumb question #2:

After having done a number of "imports", is there a simple command to get a
list of vendor and release tags (along with when they were created)?

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 07, 2000 2:17 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: Dumb question about 'cvs import' of 3rd party products...


Masterson, David writes:
> 
> I think I see now.  I couldn't quite gather in the purpose of the
"checkout"
> in the discussion with "import" -- particularly with *two* tag names
> mentioned.  Now that I look at it, would the proper way of doing the
import
> of release 2 be:
> 
>       cd release2
>       cvs import -m "Import release 2" product VENDOR PROD2
>       cd /<workdir>
>       cvs checkout -jPROD2 product

That might work for release 2, but it wouldn't work for subsequent
releases.  It's better to always specify both tags:

        cd release1
        cvs import -m "Import release 1" product VENDOR PROD1
        ...  time passes ...
        cd release2
        cvs import -m "Import release 2" product VENDOR PROD2
        cd /<workdir>
        cvs checkout -j PROD1 -j PROD2 product
        cd product
        cvs commit -m'merge changes'

Then for the next release you'd use ``-j PROD2 -j PROD3'', etc.

-Larry Jones

That's one of the remarkable things about life.  It's never so
bad that it can't get worse. -- Calvin

Reply via email to