RR writes: > > Option 1: > > cvs rtag foo src > cvs co -r foo src > > Option 2: > > cvs co src > cvs tag foo src > > 1. Would either of the [...] command sequences run noticeably > faster than the other?
The second should be slightly faster since the checkout in the first version has to search all the repository files -- including those in the Attic -- for the tag whereas the second doesn't have to look up the tag and completely skips the Attic files. > 2. Other than the fact that Option 1 checks out a static tag and > Option 2 checks out Trunk, would or could the src tree look any > different in either case? It shouldn't. -Larry Jones I've got to start listening to those quiet, nagging doubts. -- Calvin _______________________________________________ Info-cvs mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/info-cvs
