[Fwd: Backrevving a file]

2002-06-11 Thread Mike Ayers
I have a file which is, say, rev 1.11. I would like to load the rev 1.10 version of the file and start working from there. Anyone know how to do this? Thanks, /|/|ike ___ Info-cvs mailing list [EMAIL PROTECTED]

Re: [Fwd: Backrevving a file]

2002-06-11 Thread Eric Siegerman
On Tue, Jun 11, 2002 at 03:53:32PM -0700, Mike Ayers wrote: I have a file which is, say, rev 1.11. I would like to load the rev 1.10 version of the file and start working from there. Anyone know how to do this? cvs update -C file.c# Discard any uncommitted changes cvs

Re: [Fwd: Backrevving a file]

2002-06-11 Thread Noel Yap
--- Eric Siegerman [EMAIL PROTECTED] wrote: cvs update -C file.c # Discard any uncommitted changes cvs update -j1.11 -j1.10 file.c # This gets 1.10 into your sandbox cvs commit file.c # Done Since this suggestion makes no assumption as to the latest revision (and