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 A27401F5AE for ; Wed, 24 Jun 2020 00:10:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387838AbgFXAKr (ORCPT ); Tue, 23 Jun 2020 20:10:47 -0400 Received: from pb-smtp2.pobox.com ([64.147.108.71]:59792 "EHLO pb-smtp2.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387693AbgFXAKq (ORCPT ); Tue, 23 Jun 2020 20:10:46 -0400 Received: from pb-smtp2.pobox.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 86D8169B0D; Tue, 23 Jun 2020 20:10:44 -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=TKkopZgosUVbqKP6MpHJkO5psnU=; b=ZBFQwN QgYpfrb9jGDsz92X+k447GB+7F38G50WcECExGSJwUWTPydc2cVMgu1bxCjFE5P9 y/P3x1xnnZFlLOUcr9avwNZ6WUa4vPLbcyC9BH9OjKghQroPEFxjgzEv4vTEcAp4 7W6guO8v3wgOk6DxR6i8f0jxQ30WZiYkE0yg4= 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=Gek22hi+ilE06QCNzDfzbtTrzHECUbJ7 JEd0bHPrWsko/xeMMzvQWhhfKpFi8Rs8Krq4JcOk+BMNml3KgUMkjpGUU58/xFu4 5Bg8YababTHp3ZfBUsOVivp1NIeCuuJUVTD2iiDilbjbcapojfIQWW5cWzkyDhcm 5Qf2DNmH5wU= Received: from pb-smtp2.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 7E12769B0C; Tue, 23 Jun 2020 20:10:44 -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-smtp2.pobox.com (Postfix) with ESMTPSA id 057F369B0B; Tue, 23 Jun 2020 20:10:44 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Johannes Schindelin via GitGitGadget" Cc: git@vger.kernel.org, Srinidhi Kaushik , Johannes Schindelin Subject: Re: [PATCH v2 2/3] diff-files: fix incorrect usage of an empty tree References: Date: Tue, 23 Jun 2020 17:10:43 -0700 In-Reply-To: (Johannes Schindelin via GitGitGadget's message of "Tue, 23 Jun 2020 12:48:04 +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: 2572FF12-B5AF-11EA-B22A-D1361DBA3BAF-77302942!pb-smtp2.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Johannes Schindelin via GitGitGadget" writes: > From: Johannes Schindelin > > In c26022ea8f5 (diff: convert diff_addremove to struct object_id, > 2017-05-30), the OID to use for intent-to-add files was inadvertently > changed from the empty blob to the empty tree. Well spotted. Regardless of the other two patches, this is absolutely the right thing to do. It is quite embarrassing that nobody noticed the typo so far.