Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:511 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 2814 invoked from network); 30 Mar 2003 19:58:15 -0000 Received: from unknown (HELO blacksheep.csh.rit.edu) (129.21.60.6) by pb1.pair.com with SMTP; 30 Mar 2003 19:58:15 -0000 Received: from fury.csh.rit.edu (fury.csh.rit.edu [2001:470:1f00:135:a00:20ff:fe8d:5399]) by blacksheep.csh.rit.edu (Postfix) with ESMTP id DCECEEB; Sun, 30 Mar 2003 14:58:14 -0500 (EST) Received: by fury.csh.rit.edu (Postfix, from userid 37404) id 4D08A1178; Sun, 30 Mar 2003 14:58:25 -0500 (EST) Date: Sun, 30 Mar 2003 14:58:24 -0500 To: Shane Caraveo Cc: internals@lists.php.net Message-ID: <20030330195824.GB1360@csh.rit.edu> Mail-Followup-To: Shane Caraveo , internals@lists.php.net References: <3E8633AD.5070402@caraveo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E8633AD.5070402@caraveo.com> User-Agent: Mutt/1.5.3i Subject: Re: [PHP-DEV] renaming cvs files From: jon@php.net (Jon Parise) On Sat, Mar 29, 2003 at 04:00:45PM -0800, Shane Caraveo wrote: > I want to start de-versioning our filenames (for example php4isapi.c to > php_isapi.c) and project files (dsp files on win), and change built > files to php5xxx where apropriate. I would do it using: > > $ mv old new > $ cvs remove old > $ cvs add new > $ cvs commit -m "Renamed old to new" -r x.x old new > > (-r to keep the revision numbers +.1) > > And then of course update the make and dsp files. > > If noone has any issue with that, I'll start doing it tomorrow night or > monday night. Of course if someone else feels inclined to do it sooner, > I wouldn't mind. Please perform the file copy in the repository itself. It would be beneficial to preserve the revision history of those files under their new names. (repo) $ cp old new (local) $ cvs checkout new (local) $ rm old; cvs remove old (local) $ cvs commit -m "Renamed old to new" -r x.x old -- Jon Parise (jon@php.net) :: The PHP Project (http://www.php.net/)