Go to the previous, next section.
One way to move the file is to copy old to new, and then issue the normal CVS commands to remove old from the repository, and add new to it. (Both old and new could contain relative paths inside the module).
$ mv old new $ cvs remove old $ cvs add new $ cvs commit -m "Renamed old to new" old new
Advantages:
Disadvantages:
Go to the previous, next section.