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 update -j1.11 -j1.10 file.c # This gets 1.10 into your sandbox
cvs commit file.c               # Done

Note the odd-looking, but correct, order of the -j's.

--

|  | /\
|-_|/  >   Eric Siegerman, Toronto, Ont.        [EMAIL PROTECTED]
|  |  /
Anyone who swims with the current will reach the big music steamship;
whoever swims against the current will perhaps reach the source.
        - Paul Schneider-Esleben

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to