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=-3.9 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,URIBL_BLOCKED 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 A08501F66E for ; Fri, 28 Aug 2020 21:05:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726452AbgH1VFh (ORCPT ); Fri, 28 Aug 2020 17:05:37 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:51329 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726338AbgH1VFf (ORCPT ); Fri, 28 Aug 2020 17:05:35 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 3FE86D9C08; Fri, 28 Aug 2020 17:05:33 -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=urxSDWpENBO2dxd0RQjrTSAR7+w=; b=iknqjW 8nSGIa/XnsqdXvh6PSqYatAq7klDl0/WY5NIV5QXeL3Yw157nxdEfOSEInEb4RhJ nJWdf0i00dWwD8FDV9xzcM73s/J4viusvI3tAhAumWcUG6TSFp4rFLiWqc0gihCQ P4L+eZZSabOjjYAIRn7WyVGU0A663nnRKx76w= 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=yfroUHUPMniRtql0409yZufdIAyw/gQF YkMWkohATlr1ugXzs1jWdKyRxoHZ0fTlO6OhNbFM9SJxOqEWDbzZp1gIg/w4iNRz xUZ5wtObiF0d8wbYqIfMJkzvPqUeaQIFzUCPoP/ytK9IwFR2GZ1vXpGuZ7SxMib0 TEB11maBeEg= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 3890FD9C07; Fri, 28 Aug 2020 17:05:33 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [35.190.152.57]) (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 7F3F8D9C06; Fri, 28 Aug 2020 17:05:30 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Hugo Locurcio via GitGitGadget" Cc: git@vger.kernel.org, Hugo Locurcio Subject: Re: [PATCH] bisect: swap command-line options in documentation References: Date: Fri, 28 Aug 2020 14:05:28 -0700 In-Reply-To: (Hugo Locurcio via GitGitGadget's message of "Fri, 28 Aug 2020 15:31:19 +0000") 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: 348BDCE8-E972-11EA-91A4-F0EA2EB3C613-77302942!pb-smtp20.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Hugo Locurcio via GitGitGadget" writes: > + git bisect start [--term-{new,bad}= --term-{old,good}=] > [--no-checkout] [--first-parent] [ [...]] [--] [...] Yeah, matching the --term-{bad,good} and the actual arguments may make it easier to see the correspondence between them. Good idea. In the old days, back when there weren't "--term-*=", it was much simpler. All people have to do was to remember that and are ordered alphabetically. Will queue. Thanks.