From mboxrd@z Thu Jan 1 00:00:00 1970
From: Thomas Ackermann
Subject: [PATCH v3 0/6] GIT, Git, git
Date: Mon, 21 Jan 2013 20:12:20 +0100 (CET)
Message-ID: <884336319.632675.1358795540870.JavaMail.ngmail@webmail20.arcor-online.net>
References: <1860384981.631689.1358793375131.JavaMail.ngmail@webmail20.arcor-online.net> <7vvcark1f2.fsf@alter.siamese.dyndns.org> <775908345.1391972.1358713010522.JavaMail.ngmail@webmail12.arcor-online.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Cc: davvid@gmail.com, git@vger.kernel.org
To: gitster@pobox.com, th.acker@arcor.de
X-From: git-owner@vger.kernel.org Mon Jan 21 20:12:51 2013
Return-path:
Envelope-to: gcvg-git-2@plane.gmane.org
Received: from vger.kernel.org ([209.132.180.67])
by plane.gmane.org with esmtp (Exim 4.69)
(envelope-from )
id 1TxMnU-0001OC-OD
for gcvg-git-2@plane.gmane.org; Mon, 21 Jan 2013 20:12:45 +0100
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
id S1752763Ab3AUTMX (ORCPT );
Mon, 21 Jan 2013 14:12:23 -0500
Received: from mail-in-11.arcor-online.net ([151.189.21.51]:45345 "EHLO
mail-in-11.arcor-online.net" rhost-flags-OK-OK-OK-OK)
by vger.kernel.org with ESMTP id S1752326Ab3AUTMX (ORCPT
); Mon, 21 Jan 2013 14:12:23 -0500
Received: from mail-in-05-z2.arcor-online.net (mail-in-05-z2.arcor-online.net [151.189.8.17])
by mx.arcor.de (Postfix) with ESMTP id E943A35A380;
Mon, 21 Jan 2013 20:12:20 +0100 (CET)
Received: from mail-in-17.arcor-online.net (mail-in-17.arcor-online.net [151.189.21.57])
by mail-in-05-z2.arcor-online.net (Postfix) with ESMTP id E9173116003;
Mon, 21 Jan 2013 20:12:20 +0100 (CET)
Received: from webmail20.arcor-online.net (webmail20.arcor-online.net [151.189.8.201])
by mail-in-17.arcor-online.net (Postfix) with ESMTP id E28B8CBC60;
Mon, 21 Jan 2013 20:12:20 +0100 (CET)
X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-17.arcor-online.net E28B8CBC60
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arcor.de; s=mail-in;
t=1358795540; bh=W/bgsre7sCjcrXPguWezrS8ZDl5ypPK8ubus036LGD0=;
h=Date:From:To:Cc:Message-ID:In-Reply-To:References:Subject:
MIME-Version:Content-Type:Content-Transfer-Encoding;
b=Na2dZYx11VK2xcDsy4t7NCfgkwl9l+oumZFUT8BIlv3tjaxECKAltVPxmgV+RPnd7
Hc8eZ7sA0TeukQ4mSEiq+Ce1DDfTjoZJh5FY2vXcdOob1pLq3C1EH1Q9S8s2TvDoL8
rIz3sBJm5Ist7Kv0cYrlMcSAgs9+arH5JrtkkKuY=
Received: from [188.105.98.86] by webmail20.arcor-online.net (151.189.8.201) with HTTP (Arcor Webmail); Mon, 21 Jan 2013 20:12:20 +0100 (CET)
In-Reply-To: <1860384981.631689.1358793375131.JavaMail.ngmail@webmail20.arcor-online.net>
X-ngMessageSubType: MessageSubType_MAIL
X-WebmailclientIP: 188.105.98.86
Sender: git-owner@vger.kernel.org
Precedence: bulk
List-ID:
X-Mailing-List: git@vger.kernel.org
Archived-At:
Git changed its 'official' system name from 'GIT' to 'Git' in v1.6.5.3
(as can be seen in the corresponding release note where 'GIT' was
changed to 'Git' in the header line).
Alas the documention uses 'GIT', 'Git' or even 'git' to refer to the
Git system. So change every occurrence of 'GIT" and 'git' in the
documention to 'Git' whenever Git as a system is referred to
(but don't do this change in the release notes because they
constitute a history orthogonal to the history versioned by Git).
There is also one occurence of 'GITweb' which is changed to 'Gitweb' but
changing 'gitweb' to 'Gitweb' (or 'GitWeb'?) should be part of another
patch.
The "'git' to 'Git'" patch has to be divided in four parts to stay within
the mail size limit of 100kB (sorry for the noise with v2 of this series).
[PATCH v3 1/6] Change old system name 'GIT' to 'Git'
[PATCH v3 2/6] Change 'git' to 'Git' whenever the whole system is referred to #1
[PATCH v3 3/6] Change 'git' to 'Git' whenever the whole system is referred to #2
[PATCH v3 4/6] Change 'git' to 'Git' whenever the whole system is referred to #3
[PATCH v3 5/6] Change 'git' to 'Git' whenever the whole system is referred to #4
[PATCH v3 6/6] Add rule for when to use 'git' and when to use 'Git'
---
Thomas