From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier " Newsgroups: gmane.emacs.help Subject: Re: RCS revert to previous version Date: 12 Oct 2002 14:56:34 -0400 Organization: Yale University Sender: help-gnu-emacs-admin@gnu.org Message-ID: <5lr8eveba5.fsf@rum.cs.yale.edu> References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1034449845 23716 127.0.0.1 (12 Oct 2002 19:10:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 12 Oct 2002 19:10:45 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 180Reu-0006AO-00 for ; Sat, 12 Oct 2002 21:10:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 180RfS-0006iN-00; Sat, 12 Oct 2002 15:11:18 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!news.ycc.yale.edu!rum.cs.yale.edu!rum.cs.yale.edu Original-Newsgroups: comp.emacs,gnu.emacs.help Original-Lines: 22 Original-NNTP-Posting-Host: rum.cs.yale.edu User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 X-Original-NNTP-Posting-Host: rum.cs.yale.edu X-Original-Trace: 12 Oct 2002 14:56:38 -0400, rum.cs.yale.edu Original-Xref: shelby.stanford.edu comp.emacs:75250 gnu.emacs.help:105980 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2527 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2527 >>>>> "Chris" == Chris writes: > If I am working on, say 1.7 of a document using RCS, what is the easiest > way to revert to a specific version, say 1.4 as an example? What do you mean by "revert" ? In your example, when you say you want to revert to 1.6, which of the following options do you mean: - you simply want the content of the file to be the same as the one in version 1.6 (and it will be committed as 1.9 if you ever commit it, at which point 1.6 and 1.9 would be the same) - you really want to get back to the time when 1.6 was the latest and simply discard 1.7 and 1.8 (i.e. after reverting to 1.6, modifying the file and committing it, it'd be committed as 1.7). - you want to go back to the time of 1.6 but without discarding 1.7 and 1.8, such that after modifying the file, it will be committed as 1.6.1.1 (i.e. first version on a new branch named 1.6.1). - yet something else. As you can see, things aren't as simple as they seem. Stefan