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-ASN: AS31976 209.132.180.0/23 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,RCVD_IN_DNSWL_HI,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id CCBD31F619 for ; Wed, 26 Feb 2020 20:13:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727465AbgBZUNj (ORCPT ); Wed, 26 Feb 2020 15:13:39 -0500 Received: from pb-smtp20.pobox.com ([173.228.157.52]:55527 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727444AbgBZUNj (ORCPT ); Wed, 26 Feb 2020 15:13:39 -0500 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 2ED37AC118; Wed, 26 Feb 2020 15:13:37 -0500 (EST) (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=Dj/n5relzG4iQJx4gST49uZeng8=; b=d5WF2k D/yLKZlQ+Bp02Y2RzqpgAeNmqbZR1NpGRud36g0P/x+pTqZNbbQEpBjJI9F7AkQu tYnLEaB5tNrID5wyYA7IdiRHeFufAqFEShC/CoD0uC8pqRJ3FcuBqtfOdG96OYkV g61PqosWKVyo5OcnHteP3VpxDSXYo/SI7dp2g= 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=B3btGljYXakS35kh7wzMVB+aBMPhbFwn 1LVnNL67XpFDCLNs5/MQk+Zpo+JCFvs3K+ysw046VsMmfxzMwLwpHOAcojuFdCeR m0AoL8WPiYVZr0VlYFnKIzg6qR0hVXHWv5T8yVRNCYWoLrG/5KQVkOXvD5lvqy+n QoEokVNzu7c= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 251F3AC117; Wed, 26 Feb 2020 15:13:37 -0500 (EST) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.76.80.147]) (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 3BC12AC116; Wed, 26 Feb 2020 15:13:34 -0500 (EST) (envelope-from junio@pobox.com) From: Junio C Hamano To: benno@bmevers.de Cc: git@vger.kernel.org, spearce@spearce.org Subject: Re: [PATCH v2] describe: dont abort too early when searching tags References: <20200226174853.27404-1-benno@bmevers.de> Date: Wed, 26 Feb 2020 12:13:31 -0800 In-Reply-To: <20200226174853.27404-1-benno@bmevers.de> (benno@bmevers.de's message of "Wed, 26 Feb 2020 18:48:53 +0100") 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: 77183F54-58D4-11EA-A476-B0405B776F7B-77302942!pb-smtp20.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org benno@bmevers.de writes: > Thus, this commit modifies the stopping condition to only abort > the search when only one branch is left to search *and* all current > best candidates are descendants from that branch. > > For repositories with a single root, this condition is always > true: When the search is reduced to a single active branch, the > current commit must be an ancestor of *all* tag candidates. This > means that in the common case, this change will have no negative > performance impact since the same number of commits as before will > be traversed. > > Signed-off-by: Benno Evers > --- > Changes since v1: > > * Added a paragraph that discusses performance impact to the commit > message. > ... > +' > + > +test_done > \ No newline at end of file I'll fix this while queuing. Thanks for an update.