On 6 Apr 2006 01:34:18 -0700, Christian Tsotter <[EMAIL PROTECTED]> wrote: > Hello NG > > We have following structure in our CVS repository (in fact its much > more complex, thats just an example) > > root > I---framework > I---repository > I---projekt1_server > I---projekt1_client > I---projekt2 > I---projekt3 > > To work on projekt1 you have to check out > * framework, > * repository, > * projekt1_server > * projekt1_client > > To work on projekt2 you have to check out > * framework > * repository > * projekt2 > * projekt3 > > Is there a possibilty to execute just one command to check out all to a > project related resources? > Like the developer checks out projekt2 and automatically is checking > out all related resources. > But if you work on projekt1 and projekt2 you should not have project > framework twice on your local machine. > > Is triggers a possiblity? Modules?
modules. Checkout and modify CVSROOT/Modules add a line like: whole_projekt2 -d projekt2 projekt2 projekt3 repository framework whole_projekt1 -d projekt1 projekt1 projekt1_client projekt1_server repository framework commit and specify whole_projekt2/1 when checking out. Enjoy. --Russ > > Thanks, > Christian > > _______________________________________________ > info-cvs mailing list > [email protected] > http://lists.nongnu.org/mailman/listinfo/info-cvs > _______________________________________________ info-cvs mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/info-cvs
