Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id BF006200B11 for ; Mon, 13 Jun 2016 10:52:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BD9D8160A3C; Mon, 13 Jun 2016 08:52:25 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 07384160A19 for ; Mon, 13 Jun 2016 10:52:24 +0200 (CEST) Received: (qmail 10215 invoked by uid 500); 13 Jun 2016 08:52:19 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 10204 invoked by uid 99); 13 Jun 2016 08:52:19 -0000 Received: from mail-relay.apache.org (HELO mail-relay.apache.org) (140.211.11.15) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jun 2016 08:52:19 +0000 Received: by mail-relay.apache.org (ASF Mail Server at mail-relay.apache.org, from userid 3316) id 8ADE31A00C5; Mon, 13 Jun 2016 08:52:18 +0000 (UTC) Date: Mon, 13 Jun 2016 08:52:18 +0000 From: Daniel Shahaf To: Johan Corveleyn Cc: users@subversion.apache.org Subject: Re: Is there a way to 'sparsify' a working copy, without starting over? Message-ID: <20160613085218.GA3164@tarsus.local2> References: <84bddb20-ce64-2da7-9121-068f31e7b569@apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) archived-at: Mon, 13 Jun 2016 08:52:25 -0000 Johan Corveleyn wrote on Mon, Jun 13, 2016 at 10:04:13 +0200: > But if you have local moves, it seems the 'Delete' part of the move is > lost when updating to depth empty, and the move is broken (converted > into just the A+ of the "Add" part). > > This looks like a bug in "update --set-depth" (losing information > about local deletes (potentially part of a move)). > Other than that, this technique seems to work fine. Is the bug specific to --set-depth? It sounds like a delete-delete tree conflict, in which case, I would expect the following scenario to trigger the same behaviour: # greek tree svnadmin create r svn co -q file://$PWD/r wc cd wc touch iota svn add -q iota svn ci -q -m r1 svn up -q # scenario: svn rm -q -m r2 ^/iota svn mv -q iota kappa svn up Sorry, I can't test this right now... Daniel