Re: more cvs problems

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: "Ross J(dot) Reedstrom" <reedstrm(at)rice(dot)edu>
Cc: PostgreSQL-development <pgsql-hackers(at)postgreSQL(dot)org>
Subject: Re: more cvs problems
Date: 2000-06-01 01:28:20
Message-ID: 200006010128.VAA08877@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> 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(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-06-01 02:13:07 Re: uniqueness not always correct
Previous Message Bruce Momjian 2000-06-01 01:23:27 Re: [HACKERS] Oft Ask: How to contribute to PostgreSQL?