Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 614E617B7A for ; Tue, 7 Oct 2014 13:27:06 +0000 (UTC) Received: (qmail 35195 invoked by uid 500); 7 Oct 2014 13:27:05 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 35126 invoked by uid 500); 7 Oct 2014 13:27:05 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 35117 invoked by uid 99); 7 Oct 2014 13:27:05 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Oct 2014 13:27:05 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 61E568B57AD; Tue, 7 Oct 2014 13:27:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: luc@apache.org To: commits@commons.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Improved explanation about git configuration. Date: Tue, 7 Oct 2014 13:27:05 +0000 (UTC) Repository: commons-math Updated Branches: refs/heads/master a67f0a33e -> deb5e5298 Improved explanation about git configuration. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/deb5e529 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/deb5e529 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/deb5e529 Branch: refs/heads/master Commit: deb5e5298f2f840e31ee67de1b6fac19483b5730 Parents: a67f0a3 Author: Luc Maisonobe Authored: Tue Oct 7 15:26:51 2014 +0200 Committer: Luc Maisonobe Committed: Tue Oct 7 15:26:51 2014 +0200 ---------------------------------------------------------------------- src/site/xdoc/developers.xml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/deb5e529/src/site/xdoc/developers.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/developers.xml b/src/site/xdoc/developers.xml index 7db17fe..4be1320 100644 --- a/src/site/xdoc/developers.xml +++ b/src/site/xdoc/developers.xml @@ -154,12 +154,18 @@

Committers should configure the user.name, user.email and core.autocrlf - git repository or global options with git config. - The first two options set the identity and mail of the committer. - The third option deals with line endings to achieve consistency - in line endings. Windows users should configure this option to - true while OS X and Linux users should configure - it to input. + git repository or global settings with git config. + The first two settings define the identity and mail of the committer. + The third setting deals with line endings to achieve consistency + in line endings. Windows users should configure this setting to + true (thus forcing git to convert CR/LF line endings + in the workspace while maintaining LF only line endings in the repository) + while OS X and Linux users should configure it to input + (thus forcing git to only strip accidental CR/LF when committing into + the repository, but never when cheking out files from the repository). See Customizing + Git - Git Configuration in the git book for explanation about how to + configure these settings and more.