Huong Lam writes: > > How can I set up a cvs repository for a directory? > I tired running the following command:
It's not entirely clear to me what it is you want to do, or even for sure what you did do, but see the comments below. > cvs import -m "sample" project sample start This imports the contents of the *current* directory (.) and calls it "project" in the repository, it does not import the "project" subdirectory of the current directory (./project). Is that what you wanted to do? If it is, then is the problem that ./project didn't get imported although the other files and subdirectories did? If so, what's the actual name of "project"? CVS has a list of names that it ignores by default, perhaps you found one unintentionally. If so, you can use -I! on the import command to clear the list. -Larry Jones Girls are so weird. -- Calvin _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
