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.8 required=3.0 tests=AWL,BAYES_00, 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 11AD21F8C2 for ; Wed, 10 Feb 2021 16:08:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232123AbhBJQGh (ORCPT ); Wed, 10 Feb 2021 11:06:37 -0500 Received: from cloud.peff.net ([104.130.231.41]:56458 "EHLO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230489AbhBJQGd (ORCPT ); Wed, 10 Feb 2021 11:06:33 -0500 Received: (qmail 32412 invoked by uid 109); 10 Feb 2021 16:05:50 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Wed, 10 Feb 2021 16:05:50 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 20643 invoked by uid 111); 10 Feb 2021 16:05:49 -0000 Received: from coredump.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.2) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Wed, 10 Feb 2021 11:05:49 -0500 Authentication-Results: peff.net; auth=none Date: Wed, 10 Feb 2021 11:05:49 -0500 From: Jeff King To: Eric Sunshine Cc: Bryan Turner , SURA , Git Users Subject: Re: [PATCH] mailmap: only look for .mailmap in work tree Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Tue, Feb 09, 2021 at 02:00:37PM -0500, Eric Sunshine wrote: > On Tue, Feb 9, 2021 at 12:31 PM Jeff King wrote: > > Subject: [PATCH] mailmap: only look for .mailmap in work tree > > [...] > > Signed-off-by: Jeff King > > --- > > diff --git a/Documentation/git-shortlog.txt b/Documentation/git-shortlog.txt > > @@ -113,6 +113,10 @@ MAPPING AUTHORS > > +Note that if `git shortlog` is run outside of a repository (to process > > +log contents on stdin), it will look for a `.mailmap` file in the > > +current directory. > > Elsewhere in this same document, techy-jargon "stdin" is spelled out > fully as "standard input". Thanks. We seem to use "stdin" in other manpages, but I agree it makes sense to be consistent here. -Peff