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 CBC8A1F4B4 for ; Thu, 10 Sep 2020 04:52:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726534AbgIJEwr (ORCPT ); Thu, 10 Sep 2020 00:52:47 -0400 Received: from pb-smtp21.pobox.com ([173.228.157.53]:54837 "EHLO pb-smtp21.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725981AbgIJEwq (ORCPT ); Thu, 10 Sep 2020 00:52:46 -0400 Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 19F1EFAA66; Thu, 10 Sep 2020 00:52:43 -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=WVKBnV3J4bkDOyr2ImutyCg+d5A=; b=ogIbT5 s15RLGg31G+Ex7due3Ie4gPvolpFOFbRWahkGRL6UDHr19t2x+W7Z285eFQwQ+AA TulfRJWaHoXQrnvADosaHDPAhd4CC0kC9wyRK8XXUnDXNtFRXaQyrn4/xVSkuARy 4jC5OJBCi2lYF6LPpGCd175uQQSUrbdWr+U6w= 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=KWM00tUpJxYJL8NqE8nWeVGc2cSciJ1H eX1QLTOcVSse0VAz0uPcwfT8z793x04pgUuMWZoBh6DoG6DAADDti+xbcQN4W6v4 mZaEYaEn5cXk7I1HGLdyU9Ql+D0NAgwRNDqcgSjp8q9wjo5mSl+gN5tY5wbdYfG0 d99XAGBxV3A= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 03A6CFAA65; Thu, 10 Sep 2020 00:52:43 -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-smtp21.pobox.com (Postfix) with ESMTPSA id 393F8FAA64; Thu, 10 Sep 2020 00:52:40 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: Eric Sunshine Cc: Git List Subject: Re: What's cooking in git.git (Sep 2020, #03; Wed, 9) References: Date: Wed, 09 Sep 2020 21:52:38 -0700 In-Reply-To: (Eric Sunshine's message of "Wed, 9 Sep 2020 19:07:22 -0400") 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: 7483B97A-F321-11EA-AEB0-843F439F7C89-77302942!pb-smtp21.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Eric Sunshine writes: > On Wed, Sep 9, 2020 at 6:33 PM Junio C Hamano wrote: >> * es/format-patch-interdiff-cleanup (2020-09-08) 3 commits >> - format-patch: use 'origin' as start of current-series-range when known >> - diff-lib: tighten show_interdiff()'s interface >> - diff: move show_interdiff() from its own file to diff-lib >> >> Code cleanup with a slight behaviour change when "format-patch >> --range-diff= origin..HEAD" gives a single revision to >> . > > Perhaps this could be a bit more precise by saying something like: > > Code cleanup and make "format-patch --range-diff= > ..HEAD" not ignore when is a single > revision. Sure. I didn't realize we can be more specific without spending too many more bytes. Let me steal that description. > "git worktree add" learns "-d" as short for "--detach". Thanks.