Re: [HACKERS] which list? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [HACKERS] which list?
Date
Msg-id 20220.928197951@sss.pgh.pa.us
Whole thread Raw
In response to Re: [HACKERS] which list?  (Bruce Momjian <maillist@candle.pha.pa.us>)
Responses Re: [HACKERS] which list?  (Vince Vielhaber <vev@michvhf.com>)
List pgsql-hackers
Bruce Momjian <maillist@candle.pha.pa.us> writes:
>> Which list are the cvs changes posted to?  I see that Tom Lane made
>> changes to just about all of the libpq++ source files but I have no
>> idea what was done.

> Oh, it's a secret.
> To the committers list, I think.

Right.  You can subscribe to either committers or committers-digest
(I use the latter).  Also, don't forget that you can use "cvs log"
to examine the log file for any particular file you are concerned
about.

For example:

$ cvs log pgtransdb.cc | more

RCS file: /usr/local/cvsroot/pgsql/src/interfaces/libpq++/pgtransdb.cc,v
Working file: pgtransdb.cc
head: 1.3
branch:
locks: strict
access list:
symbolic names:       REL6_4: 1.1.0.2       release-6-3: 1.1
keyword substitution: kv
total revisions: 3;     selected revisions: 3
description:
----------------------------
revision 1.3
date: 1999/05/30 15:17:58;  author: tgl;  state: Exp;  lines: +4 -4
Replace static rcsid[] strings by IDENTIFICATION comments in
file headers, to conform to established Postgres coding style and avoid
warnings from gcc.
----------------------------

Or even more directly, use "cvs diff" to see the differences between
any two revisions:

$ cvs diff -c -r 1.4 -r 1.5 pglobject.cc
Index: pglobject.cc
===================================================================
RCS file: /usr/local/cvsroot/pgsql/src/interfaces/libpq++/pglobject.cc,v
retrieving revision 1.4
retrieving revision 1.5
diff -c -r1.4 -r1.5
*** pglobject.cc    1999/05/23 01:04:03    1.4
--- pglobject.cc    1999/05/30 15:17:58    1.5
***************
*** 9,14 ****
--- 9,16 ----  *  * Copyright (c) 1994, Regents of the University of California  *
+  * IDENTIFICATION
+  *      $Header: /usr/local/cvsroot/pgsql/src/interfaces/libpq++/pglobject.cc,v 1.5 1999/05/30 15:17:58 tgl Exp $  *
*------------------------------------------------------------------------- */
 
***************
*** 18,25 **** }  #include "pglobject.h"
- 
- static char rcsid[] = "$Id: pglobject.cc,v 1.4 1999/05/23 01:04:03 momjian Exp $";  //
****************************************************************//
 
--- 20,25 ----

See the cvs manual for these and many more useful features...
        regards, tom lane


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: IRC meeting
Next
From: Vince Vielhaber
Date:
Subject: Re: [HACKERS] which list?