From owner-freebsd-current Sat Apr 6 19:23:33 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id TAA06053 for current-outgoing; Sat, 6 Apr 1996 19:23:33 -0800 (PST) Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id TAA06038 for ; Sat, 6 Apr 1996 19:23:24 -0800 (PST) Received: from localhost.DIALix.oz.au (peter@localhost.DIALix.oz.au [127.0.0.1]) by jhome.DIALix.COM (8.7.5/8.7.3) with SMTP id LAA03025; Sun, 7 Apr 1996 11:22:28 +0800 (WST) Message-Id: <199604070322.LAA03025@jhome.DIALix.COM> X-Authentication-Warning: jhome.DIALix.COM: Host peter@localhost.DIALix.oz.au [127.0.0.1] didn't use HELO protocol To: Garrett Wollman cc: Bruce Evans , freebsd-current@FreeBSD.org Subject: Re: sup/cvs tags In-reply-to: Your message of "Sat, 06 Apr 1996 14:25:45 EST." <9604061925.AA07184@halloran-eldar.lcs.mit.edu> Date: Sun, 07 Apr 1996 11:22:27 +0800 From: Peter Wemm Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >< said: > >> BTW, what is the best way to look at the diffs in the wollman_polling >> branch? `cvs diff -r HEAD -r wollman_polling' gave too many current >> diffs just one or two days after the branch. How do I get the date >> of the branch in a form suitable for `cvs diff -D'? > >It seems to me a bug that CVS won't take as input the date format that >RCS outputs... In any event, you can say ``cvs diff -D '1 april' -r >wollman_polling'' and get reasonable-looking diffs. > >-GAWollman That's why branch point tags are used.. to eliminate this ambiguity. What _should_ have happened when this was tagged was: cvs rtag wollman_pending_bp sys cvs rtag -r wollman_pending_bp -b wollman_pending sys cvs checkout -r wollman_pending sys And later, we could all do a: cvs [r]diff -r wollman_pending_bp -r wollman_pending and clearly see what you are working on. re: cvs's parsedate.y.. If anybody wants to fix it to understand all rcs's forms of date coding, be my guest. :-) I'm sure either Nate or I can take it back to the cvs developers and check it into the current source. Since CVS uses local time by default and RCS uses GMT, one has to be careful. I usually use something like: "3/31/96 10:00:07 GMT", but again one has to reverse the month and date into the "backwards" system the americans use. :-) Remember, to cvs, "april 1" covers a 24 hour time span, depending on where you are in the world. Cheers, -Peter