From owner-freebsd-commit Thu Sep 14 21:32:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22363 for freebsd-commit-outgoing; Thu, 14 Sep 1995 21:32:43 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22351 for cvs-all-outgoing; Thu, 14 Sep 1995 21:32:41 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22341 for cvs-etc-outgoing; Thu, 14 Sep 1995 21:32:39 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id VAA22336 ; Thu, 14 Sep 1995 21:32:36 -0700 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id VAA07737; Thu, 14 Sep 1995 21:32:20 -0700 To: davidg@Root.COM cc: "Rodney W. Grimes" , CVS-commiters@freefall.freebsd.org, cvs-etc@freefall.freebsd.org Subject: Re: cvs commit: src/etc rc sysconfig In-reply-to: Your message of "Thu, 14 Sep 1995 18:47:45 PDT." <199509150147.SAA00186@corbin.Root.COM> Date: Thu, 14 Sep 1995 21:32:19 -0700 Message-ID: <7735.811139539@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > Well, then the behavior isn't consistent. Instead of doing the update, > instead do the following: > > vi pstat.c > (and make some stupid but identifiable change) > cvs diff -c -rHEAD pstat.c > > The differences you see will be relative to the head of the RELENG_2_1_0 > branch, NOT the head of the "main" branch. Ah, but I believe that's because `cvs diff' has long been broken. Try this, for an example: cvs co foo cd foo cvs diff -rRELENG_2_1_0 -rHEAD You'll see nothing. According to the man page, you're *supposed* to be able to generate diffs against arbitrary tags, but it's certainly never worked that way for me. Jordan