Steve Gao writes: > > (1) If I issue a command to remove a dir in CVS > cvs rm dir > But the dir is not empty in CVS, will that command work?
That depends on your definition of "work". :-) CVS only manages files, not directories, so you *can't* remove a directory in CVS. What the above command will do is try to remove all the files in that directory, which will fail if there are any that still exist in your working directory (unless you use the "-f" flag to delete the working file as well). -- Larry Jones I keep forgetting that rules are only for little nice people. -- Calvin
