Stas Bekman wrote:
[...]
Any techniques to make an existing cvs checked owned by svn, w/o doing a re-checkout and moving the changed files over, or reapplying things as a patch?
Not that I can think of, no. Sounds like a : "( cd cvs; cvs diff ) | ( cd svn ; patch )" kinda solution to me. Once everything
is svn though, you get access to the great svn switch command though.
that doesn't work for new files yet unchecked.
Well, cvs wouldn't know anything about these files either, so it's either cvs add files; "( cd cvs; cvs diff ) | ( cd svn ; patch )"
or it's rsync -av --exclude=CVS/ cvs/ svn/ and risk it that way.
I went the cvs diff | ( cd svn ; patch) way myself.
Never mind. I thought it was possible to take over an existing cvs checkout, ala svn switch.
-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]