From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 7CCDA1F5AE for ; Mon, 22 Jun 2020 16:36:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729576AbgFVQgE (ORCPT ); Mon, 22 Jun 2020 12:36:04 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:54790 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729522AbgFVQgD (ORCPT ); Mon, 22 Jun 2020 12:36:03 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id EB68FE2FD4; Mon, 22 Jun 2020 12:36:01 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=le5HFPYnkm8hesVQf35A97cxQIM=; b=lvEYWI oPtZ0pyom6JKLc3V4KAhplqrPXLI7BL75Wk57TWMKYmkZ68gqvVprNK/5ruNftaB Mf3XkTKmpUS3uyUp7lELMNln6//eecw1fOodvza5zx8uIrdoRM8nFOLhUk5hc7d6 EpWx++JMLd9cRgrM/ZZV+Nou5g2cuOwfSakdc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=o8JEzW1qyzWTgIxJatbsOUE7pi5AzkFg iBEl1sK9w4sVazXfbU8gt0UCM05pJfBLuVwwV456w2gT3YAuhOnjCBE7+wSXuDXW THQmwxScafN4twOWlqy18UpMg1Sl7sMdT2aySIoRNH+KC6Nk4N3pjaMVWP/HHK46 3rgpW93GK8E= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id E42ABE2FD3; Mon, 22 Jun 2020 12:36:01 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [35.196.173.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 2A5EAE2FD1; Mon, 22 Jun 2020 12:35:59 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: Johannes Schindelin Cc: Jeff King , git@vger.kernel.org Subject: Re: [PATCH 0/3] fast-export: allow dumping anonymization mappings References: <20200619132304.GA2540657@coredump.intra.peff.net> Date: Mon, 22 Jun 2020 09:35:57 -0700 In-Reply-To: (Johannes Schindelin's message of "Fri, 19 Jun 2020 15:51:55 +0200 (CEST)") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 73FF2F0C-B4A6-11EA-BB2E-B0405B776F7B-77302942!pb-smtp20.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Johannes Schindelin writes: > Hi Peff, > > On Fri, 19 Jun 2020, Jeff King wrote: > >> The "master" branch is special in fast-export in that we don't anonymize >> it. And the reason is that it helps to have some known reference point >> between the original and anonymized repo, so you can find the same >> commits. >> >> This series gives an alternate way to achieve the same effect, but much >> better in that it works for _any_ ref (so if you are trying to reproduce >> the effect of "rev-list origin/foo..bar" in the anonymized repo, you can >> easily do so). Ditto for paths, so that "rev-list -- foo.c" can be >> reproduced in the anonymized repo. >> >> And then we can drop the specialness of "master", which in turn is one >> less thing to worry about in Dscho's series to make the default branch >> configurable. > > Thank you for working on this! > > I don't have any suggestions on top of Eric's and Junio's. > > I'll drop the `fast-export` patches from the next round of my patch > series. Understood. Thanks, all.