
15 May
2006
15 May
'06
2:04 p.m.
When SourceForge repaired CVS most recently, they also changed the server names. Yes, this also happened in 2004: in 2004: cvs.<project>.(sourceforge|sf).net -> cvs.(sourceforge|sf).net in 2006: cvs.(sourceforge|sf).net -> <project>.cvs.(sourceforge|sf).net If you have Unix tools available, the following at the root of your working copy will reset the server identity: find /projects/boost-cvs -name Root -exec sed -i -e \ s/cvs[.]s.*[.]net/boost.cvs.sourceforge.net/ \{} \; and this is the formula for the sandbox find /projects/boost-cvs -name Root -exec sed -i -e \ s/cvs[.]s.*[.]net/boost-sandbox.cvs.sourceforge.net/ \{} \; -- Dave Abrahams Boost Consulting www.boost-consulting.com