Robert Strandh writes:
Hello,
Paul Werkowski writes:
Tried to do a cvs update, got
cvs server: cannot open directory /project/mcclim/cvsroot/mcclim/images: No such file or directory cvs server: skipping directory images
That directory was explicitly removed from the CVS tree, because it was empty and created name conflics with the one called Images on non-case-senstivie platforms.
I guess you would have to remove your local directory images, perhaps physically from the CVS/* files as well.
CVS update doesn't create or delete directories by default; you need to specify some options:
cvs up -dP
will delete local copies of any deleted directories at the repository (-P) and create any directories newly created at the repository (-d). You can make this default behaviour by adding this line to ~/.cvsrc:
update -dP
(trim leading whitespace).
John