From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) 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, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI shortcircuit=no autolearn=ham autolearn_force=no version=3.4.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id 0A0201F405 for ; Wed, 8 Aug 2018 22:43:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731691AbeHIBFY (ORCPT ); Wed, 8 Aug 2018 21:05:24 -0400 Received: from cloud.peff.net ([104.130.231.41]:47662 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1729884AbeHIBFY (ORCPT ); Wed, 8 Aug 2018 21:05:24 -0400 Received: (qmail 17301 invoked by uid 109); 8 Aug 2018 22:43:38 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with SMTP; Wed, 08 Aug 2018 22:43:38 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 3924 invoked by uid 111); 8 Aug 2018 22:43:40 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.94) with (ECDHE-RSA-AES256-GCM-SHA384 encrypted) SMTP; Wed, 08 Aug 2018 18:43:40 -0400 Authentication-Results: peff.net; auth=none Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Wed, 08 Aug 2018 18:43:36 -0400 Date: Wed, 8 Aug 2018 18:43:36 -0400 From: Jeff King To: Junio C Hamano Cc: git@vger.kernel.org Subject: Re: [PATCH] update-index: there no longer is `apply --index-info` Message-ID: <20180808224336.GB3902@sigill.intra.peff.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Wed, Aug 08, 2018 at 02:35:18PM -0700, Junio C Hamano wrote: > Back when we removed `git apply --index-info` in 2007, we forgot to > adjust the documentation for update-index that reads its output. > > Let's reorder the description of three formats to present the other > two formats that are still generated by git commands before this > format, and stop mentioning `git apply --index-info`. Yep, this makes sense. > --- > Documentation/git-update-index.txt | 15 ++++++--------- > 1 file changed, 6 insertions(+), 9 deletions(-) For fun, I tried out my "doc-diff" on it, and it looks good. :) -Peff