> On Wed, May 31, 2000 at 04:46:01PM -0400, Bruce Momjian wrote:
> > OK, I figured out how to get a log of all changes from 7.0 to the branch
> > split:
> >
> > cvs log -r REL7_0 -r REL7_0_PATCHES .
> >
> > Now, I need a list of log entries just in the REL7_0_PATCHES branch made
> > after the branch was split. I tried:
> >
> > cvs log -d '>2000-05-08 00:00:00 GMT' -r REL7_0_PATCHES .
>
> Hmm, it looks to me like space is significant: the options take their
> value up to the next space, so (according to the book 'Open Source Development
> with CVS' found at red-bean.com/cvsbook), something like this
> should work:
>
> cvs log -d'>2000-05-08 00:00:00 GMT' -rREL7_0_PATCHES .
This does not work. It only gets changes since REL7_0PATCHES was
created.
>
> Actually, the description of the cvs log options specifically mentions
> that spaces are not allowed.
OK, thanks, I got it working with:
cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_0_PATCHES
The first gets all change up to the branch, the second gets stuff after
the branch. I am working on 7.0.1 release packaging now. Sorry for the
delay. I am just CVS messed up.
-- Bruce Momjian | http://www.op.net/~candle pgman@candle.pha.pa.us | (610)
853-3000+ If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill,
Pennsylvania19026