Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Peter Crowther > > From: Petr Prikryl > > Is there any way how to update my local copy so that the new > > IP address of the CVSNT server was captured into many > > CVS/Root files in many subdirectories? [...] > > If the sandbox is on Windows, WinCVS has a macro to change > the CVSROOT recursively - you might wish to use that. Thanks, Peter and David, for the hint. I wrote a quick-hack python script to do that instead (doxygen project): import os def visit(arg, dirname, names): p, subdir = os.path.split(dirname) if subdir == 'CVS': RootName = os.path.join(dirname, 'Root') print RootName f = open(RootName, 'w') f.write(':pserver:anonymous at cvs.planetsaphire.com:/cvsroot\n') f.close() os.path.walk('.', visit, None) -- pepr