On Mon, 20 Jan 2003, Mark Cooper wrote:

> Is there a utility available anywhere to perform global changes to the cvs
> metadata in a users working copy. For instance change the entry in cvs/root
> from ":pserver:user@oldcvs:/cvs/cvsroot" to
> ":pserver:user@newcvs:/cvs/cvsroot". I can imagine that someone somewhere
> has done this before.

A simple combination of find and sh should do:

    find . -type d -name CVS -exec sh -c 'echo :pserver:... > {}/Root' \;

Here's yet another reason to use Meta-CVS: only one CVS directory 
to fiddle with if you ever have to.



_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to