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=-5.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,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 953B81FF76 for ; Tue, 20 Dec 2016 18:52:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934545AbcLTSwZ (ORCPT ); Tue, 20 Dec 2016 13:52:25 -0500 Received: from bsmtp1.bon.at ([213.33.87.15]:7280 "EHLO bsmtp1.bon.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934445AbcLTSwY (ORCPT ); Tue, 20 Dec 2016 13:52:24 -0500 Received: from dx.site (unknown [93.83.142.38]) by bsmtp1.bon.at (Postfix) with ESMTPSA id 3tjn2s6S6Dz5tlC; Tue, 20 Dec 2016 19:52:21 +0100 (CET) Received: from [IPv6:::1] (localhost [IPv6:::1]) by dx.site (Postfix) with ESMTP id 66B2A2222; Tue, 20 Dec 2016 19:52:21 +0100 (CET) Subject: Re: Allow "git shortlog" to group by committer information To: Junio C Hamano References: <20161216133940.hu474phggdslh6ka@sigill.intra.peff.net> <20161216135141.yhas67pzfm7bxxum@sigill.intra.peff.net> <16b115e0-3a7e-a5c2-1526-44bbcfc97db8@kdbg.org> Cc: Jeff King , Linus Torvalds , Git Mailing List From: Johannes Sixt Message-ID: Date: Tue, 20 Dec 2016 19:52:21 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Am 20.12.2016 um 19:35 schrieb Junio C Hamano: > test_expect_success 'shortlog --committer (internal)' ' > + git checkout --orphan side && > + git commit --allow-empty -m one && > + git commit --allow-empty -m two && > + GIT_COMMITTER_NAME="Sin Nombre" git commit --allow-empty -m three && Clever! Thank you. Will test in 12 hours. > + > cat >expect <<-\EOF && > - 3 C O Mitter > + 2 C O Mitter > + 1 Sin Nombre > EOF > git shortlog -nsc HEAD >actual && > test_cmp expect actual >