From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.5 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id EB63A1F404 for ; Wed, 20 Dec 2017 16:07:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753439AbdLTQHe (ORCPT ); Wed, 20 Dec 2017 11:07:34 -0500 Received: from cloud.peff.net ([104.130.231.41]:44174 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751686AbdLTQHd (ORCPT ); Wed, 20 Dec 2017 11:07:33 -0500 Received: (qmail 21367 invoked by uid 109); 20 Dec 2017 16:07:33 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with SMTP; Wed, 20 Dec 2017 16:07:33 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 14127 invoked by uid 111); 20 Dec 2017 16:07:59 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.94) with ESMTPA; Wed, 20 Dec 2017 11:07:59 -0500 Authentication-Results: peff.net; auth=pass (cram-md5) smtp.auth=relayok Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Wed, 20 Dec 2017 11:07:31 -0500 Date: Wed, 20 Dec 2017 11:07:31 -0500 From: Jeff King To: Jeff Hostetler Cc: git@vger.kernel.org, gitster@pobox.com, Jeff Hostetler Subject: Re: [PATCH 1/4] status: add --no-ahead-behind to porcelain V2 Message-ID: <20171220160731.GA31149@sigill.intra.peff.net> References: <20171220144245.39401-1-git@jeffhostetler.com> <20171220144245.39401-2-git@jeffhostetler.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20171220144245.39401-2-git@jeffhostetler.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Wed, Dec 20, 2017 at 02:42:42PM +0000, Jeff Hostetler wrote: > diff --git a/Documentation/git-status.txt b/Documentation/git-status.txt > index 9f3a78a..6ce8cf8 100644 > --- a/Documentation/git-status.txt > +++ b/Documentation/git-status.txt > @@ -111,6 +111,13 @@ configuration variable documented in linkgit:git-config[1]. > without options are equivalent to 'always' and 'never' > respectively. > > +--no-ahead-behind:: > + Do not compute ahead/behind counts for the current branch relative > + to the upstream branch. This can be used to avoid a possibly very > + expensive computation on extremely large repositories. > ++ > + In porcelain V2 format, the 'branch.ab' line will not be present. > + This second paragraph after the "+" continuation shouldn't be indented (sadly it makes the source much uglier, but it's one of the vagaries of asciidoc). -Peff