Ethereal-dev: RE: [Ethereal-dev] ethereal man page

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "Peter Kjellerstedt" <peter.kjellerstedt@xxxxxxxx>
Date: Wed, 26 May 2004 08:12:52 +0200
> -----Original Message-----
> From: ethereal-dev-bounces@xxxxxxxxxxxx 
> [mailto:ethereal-dev-bounces@xxxxxxxxxxxx] On Behalf Of Guy Harris
> Sent: Wednesday, May 26, 2004 05:47
> To: Ethereal development
> Subject: Re: [Ethereal-dev] ethereal man page
> 
> On Tue, May 25, 2004 at 09:43:52PM +0200, Ulf Lamping wrote:
> > Seems to be the right way, but how do we rename files in CVS?
> 
> Unfortunately, the only way to do it is to delete the old file and add
> the new file.  As I understand it, subversion *does* understand the
> concept of a rename.

It is possible to rename files in CVS, but it involves 
copying the file directly in the CVS repository...

The correct way IMHO is the following:

1) Copy old_file,v to new_file,v
2) Check out new_file
3) Remove all tags from new_file (except branch tags)
4) cvs rm old_file

This way old_file will be checked out if one
checks out an old release, new_file will be
checked out if one retrieves the current version
and it will have the complete commit logs.

//Peter