From owner-freebsd-hackers Wed May 7 17:01:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA26345 for hackers-outgoing; Wed, 7 May 1997 17:01:23 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA26340 for ; Wed, 7 May 1997 17:01:20 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id JAA25160; Thu, 8 May 1997 09:51:36 +1000 Date: Thu, 8 May 1997 09:51:36 +1000 From: Bruce Evans Message-Id: <199705072351.JAA25160@godzilla.zeta.org.au> To: hackers@FreeBSD.ORG, julian@whistle.com Subject: Re: CVS guru's only Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >ok, so I have a branch on the cvs tree >(say called RELENG_2_2) >and I want to check out that branch as it was on Dec 25 1996. >HOW DO I DO THAT? Short answer: don't do that. cvs doesn't really support development on branches. If you must, try somewthing like: cvs co -r RELENG_2_2 src cd src cvs update -j RELENG_2_2 -j RELENG_2_2:'25 Dec 1996' Bruce