Re: CVS checkout issue - no working dir
"Mclean, Frank" <[email protected]> Wed, 28 Feb 2007 09:53:36 -0500
| Newsgroups | gmane.comp.version-control.cvs.windows-nt.user,gmane.comp.version-control.cvs.general,gmane.comp.version-control.cvs.bugs |
|---|---|
| Message-ID | <8F523CF3EA46B344BEFD62C61103B9B20556DB58@CBSMAIL.crossbeamsys.com> |
Did you retain the same pserver name when moving to the new system?
If not, you need to change to the new pserver in all .../CVS/Root files
within the sandbox using a script something like"
for file in `find . -name Root `
do
if [ `basename \`dirname $file \` ` = "CVS" ]; then
echo ":pserver:<new_pserver>:<repository_path>"
>$file
echo "Updated $file"
fi
done