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 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 A61431F4B4 for ; Wed, 7 Oct 2020 17:55:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728710AbgJGRy5 (ORCPT ); Wed, 7 Oct 2020 13:54:57 -0400 Received: from pb-smtp2.pobox.com ([64.147.108.71]:64268 "EHLO pb-smtp2.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727697AbgJGRy5 (ORCPT ); Wed, 7 Oct 2020 13:54:57 -0400 Received: from pb-smtp2.pobox.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 531628CCEC; Wed, 7 Oct 2020 13:54:55 -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=IbI9NjXVvOAsQRr+G/FM3luHb1U=; b=ETuFG5 zF4Lo7TeY7qKBduI2r2icaZEhuxV1dFmlGGK5Vr3Z3oM2zgwqC+/YqzTxNyjPbVL COaerov7Dtn9R88B9sOCXr7DIRcihmPp6OI2LuSo9zsOUaDm1ykjTjbQZ4m44KCl DZwazRAhWmq4c4k/XY235F/IQAkiWcBLkemoQ= 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=j83vBy78efI6a+PHnRQap7SAmBTlFzMO sMEmT8Zg4UwjDFKHj5CjjuVnXVn4qygexe2KXDEse1BAMpPfL6GkviWk3PzgkvGf J6m/vHGWSvH/+LAWwdXc4N+MEqCRze37bSnwVe7RajqjP8uP6PYmA5yxPtSUp1cX H0FSh/Eq+9Y= Received: from pb-smtp2.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 49FEC8CCEB; Wed, 7 Oct 2020 13:54:55 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.74.119.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp2.pobox.com (Postfix) with ESMTPSA id C50918CCEA; Wed, 7 Oct 2020 13:54:54 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: Robert Karszniewicz Cc: git@vger.kernel.org Subject: Re: [PATCH 1/2] git-completion.bash: __git_diff_common_options: add --[no-]patch References: <20201006220637.28139-1-avoidr@posteo.de> Date: Wed, 07 Oct 2020 10:54:54 -0700 In-Reply-To: <20201006220637.28139-1-avoidr@posteo.de> (Robert Karszniewicz's message of "Wed, 7 Oct 2020 00:06:36 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 34DA9B44-08C6-11EB-9FC8-74DE23BA3BAF-77302942!pb-smtp2.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Robert Karszniewicz writes: > At the same time also deduplicate those options from command completions > which use $__git_diff_common_options. > > Signed-off-by: Robert Karszniewicz > --- > contrib/completion/git-completion.bash | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) Makes sense. Will queue together with [2/2]. Thanks.