From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21895 invoked by alias); 14 Sep 2009 15:19:08 -0000 Received: (qmail 21843 invoked by uid 22791); 14 Sep 2009 15:19:07 -0000 X-SWARE-Spam-Status: No, hits=1.5 required=5.0 tests=AWL,BAYES_00,BOTNET X-Spam-Check-By: sourceware.org Received: from vms173019pub.verizon.net (HELO vms173019pub.verizon.net) (206.46.173.19) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 14 Sep 2009 15:19:00 +0000 Received: from [10.249.1.102] ([71.112.122.210]) by vms173019.mailsrvcs.net (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 32bit)) with ESMTPA id <0KPY004ALVV4X730@vms173019.mailsrvcs.net> for cygwin@cygwin.com; Mon, 14 Sep 2009 10:18:41 -0500 (CDT) Message-id: <4AAE5ED0.1000402@acm.org> Date: Mon, 14 Sep 2009 15:19:00 -0000 From: David Rothenberger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.23) Gecko/20090812 Thunderbird/2.0.0.23 Mnenhy/0.7.6.666 MIME-version: 1.0 To: cygwin@cygwin.com Subject: Re: subversion hangs on svn up using 1.6.4 & 1.6.5 References: <3ae83b000909131346s6e6184c9r98732d1fc765f2af@mail.gmail.com> In-reply-to: <3ae83b000909131346s6e6184c9r98732d1fc765f2af@mail.gmail.com> Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7bit X-IsSubscribed: yes Reply-To: cygwin@cygwin.com Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com X-SW-Source: 2009-09/txt/msg00301.txt.bz2 On 9/13/2009 1:46 PM, John Bito wrote: > I'm not sure how to diagnose this problem, as svn up produces no > output and svn admin recover says: > > svnadmin: Expected repository format '3' or '5'; found format '10' > > I imagine that the format 10 indicates that the repository is corrupt. > Do you have any suggestions for repairing it? "svnadmin recover" is for recovering a repository, not a working copy. Which are you trying to do? > There's some possibility that subclipse was what created this working > copy, though I was pretty sure I used Cygwin SVN to update it most > recently. I tried svn up with Cygwin SVN 1.6.4 and then upgraded to > Cygwin SVN 1.6.5, both hang with no output. Then I tried svnadmin > recover .svn which gives the message above. What does "svn st" say? I use "svn up" against an http repository all the time. Also, both releases of SVN passed the test suite, which runs against a local FSFS and BDB repository, as well as svn:// and http:// repositories. > If there's not a clear path to repairing my working copy, do you know > of any guidance for moving work from a broken working copy to a new > checkout so that svn up will merge changes/flag conflicts? I usually fix this by replacing all the .svn directories in my working copy. I use commands like the following. Note, this is from memory, so check them yourself before running. % cd /my/working/copy % find . -name .svn -prune -print0 | xargs -0 rm -fr % cd /tmp % svn co http://my/repository/path svn-tmp % cd svn-tmp % find . -name .svn -prune -print0 | \ rsync -avri --files-from=- --from0 ./ /my/working/copy % cd /my/working/copy % rm -fr /tmp/svn-tmp % svn status -- David Rothenberger ---- daveroth@acm.org I'll burn my books. -- Christopher Marlowe -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple