From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?q?Adeodato=20Sim=C3=B3?= Subject: [PATCH] git-shortlog.txt: improve documentation about .mailmap files Date: Fri, 26 Dec 2008 12:55:53 +0100 Message-ID: <1230292553-7613-1-git-send-email-dato@net.com.org.es> References: <1230290283-6268-1-git-send-email-dato@net.com.org.es> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE To: git@vger.kernel.org, gitster@pobox.com X-From: git-owner@vger.kernel.org Fri Dec 26 12:57:26 2008 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1LGBJc-00040V-Lf for gcvg-git-2@gmane.org; Fri, 26 Dec 2008 12:57:17 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753819AbYLZLz4 convert rfc822-to-quoted-printable (ORCPT ); Fri, 26 Dec 2008 06:55:56 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753811AbYLZLz4 (ORCPT ); Fri, 26 Dec 2008 06:55:56 -0500 Received: from 226.Red-80-25-139.staticIP.rima-tde.net ([80.25.139.226]:4698 "EHLO etc.inittab.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753789AbYLZLzz (ORCPT ); Fri, 26 Dec 2008 06:55:55 -0500 Received: from chistera.yi.org (unknown [192.168.254.34]) by etc.inittab.org (Postfix) with ESMTP id 17EB9801BF66; Fri, 26 Dec 2008 12:55:54 +0100 (CET) Received: from userid 1000 by justin with local (Exim 4.69) id 1LGBIH-0001zU-9S; Fri, 26 Dec 2008 12:55:53 +0100 X-Mailer: git-send-email 1.6.1 In-Reply-To: <1230290283-6268-1-git-send-email-dato@net.com.org.es> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: The previous .mailmap example made it seem like .mailmap files are only useful for commits with a wrong address for an author, when they are ab= out fixing the real name. Explained this better in the text, and replaced t= he existing example with a new one that hopefully makes things clearer. Signed-off-by: Adeodato Sim=C3=B3 --- Now with a Signed-off-by line. Has there even been talk of a=20 commit.signoff configuration variable to always add a S-o-b line?=20 This could allow to enable it on a per-project basis, which would b= e cool. Documentation/git-shortlog.txt | 31 ++++++++++++++++++++++++------- 1 files changed, 24 insertions(+), 7 deletions(-) diff --git a/Documentation/git-shortlog.txt b/Documentation/git-shortlo= g.txt index 7ccf31c..69e10a4 100644 --- a/Documentation/git-shortlog.txt +++ b/Documentation/git-shortlog.txt @@ -48,15 +48,32 @@ OPTIONS FILES ----- =20 -If the file `.mailmap` exists, it will be used for mapping author -email addresses to a real author name. One mapping per line, first -the author name followed by the email address enclosed by -'<' and '>'. Use hash '#' for comments. Example: +If a file `.mailmap` exists in the toplevel directory of the repositor= y, +it will be used for mapping author email addresses to a canonical real +name. This can be used to coalesce together commits by the same person +where their name was spelled differently (whether with the same email +address or not). + +The format of the file is one mapping per line, first the desired auth= or +name followed by the email address enclosed by '<' and '>'. Use hash '= #' +for comments. For example, if your history contains commits by these +committers: + +------------ +Author: Joe Developer +Author: Joe R. Developer +Author: Jane Doe +Author: Jane Doe +Author: Jane D. +------------ + +Then a proper `.mailmap` file would be: =20 ------------ -# Keep alphabetized -Adam Morrow -Eve Jones +# Note how we don't need an entry for , because th= e +# real name of that author is correct already, and coalesced directly. +Jane Doe +Joe R. Developer ------------ =20 Author --=20 1.6.1