Kaz Kylheku writes:
> 
> On Wed, 3 Apr 2002, Valerio Ferrucci wrote:
> > 
> > Which is the best way to obtain the logs for all files changed 
> > between two release?
> 
> cvs log -r rel-tag-n -r rel-tag-n+1

That only gives you the log messages for those two specific revisions,
not all the log messages for changes between the two tags.  The way to
do it is to download the current development version of CVS and then do:

        cvs log -rrel-tag-n::rel-tag-n+1

(Some versions of CVS prior to the current development version will
accept that syntax, but they'll include the log message from rel-tag-n
in the output which you don't really want.)

-Larry Jones

Don't you hate it when your boogers freeze? -- Calvin

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to