From: Jeff King <peff@peff.net>
To: Jason Spiro <jasonspiro4@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Improving CRLF error message; also, enabling autocrlf and safecrlf by default
Date: Sun, 15 Feb 2009 22:04:46 -0500 [thread overview]
Message-ID: <20090216030446.GC18780@sigill.intra.peff.net> (raw)
In-Reply-To: <loom.20090216T022524-78@post.gmane.org>
On Mon, Feb 16, 2009 at 02:45:43AM +0000, Jason Spiro wrote:
> One of the pre-commit hooks detects trailing whitespace:
>
> if (/\s$/) {
> bad_line("trailing whitespace", $_);
> }
Not since 03e2b63 (Update sample pre-commit hook to use "diff --check",
2008-06-26), when that line was removed.
I'm happy you want to improve git; but please, if you want to report
problems, check what the status is in a more recent version (or at least
tell us your version, which can help).
> Unfortunately, when I try to check in a file with DOS (CR+LF) line
> endings, this hook triggers on every line. This happens on Cygwin. I
> haven't checked, but I bet it happens on other platforms as well, as
> long as this hook runs.
Yes, I believe carriage returns are considered trailing whitespace. I
think (and I am not 100% sure here, because I have the good fortune not
to have to deal with line-ending conversions on any of my platforms)
that the general philosophy is that the "canonical" form in the
repository should be LF-only, and that conversions can optionally make
the worktree version CRLF (or whatever your platform desires it). But
it's important that the canonical version be the same across platforms
so that the blob sha-1's (and therefore the tree and commit sha-1's) all
match.
IOW, setting up core.autocrlf properly should make this go away.
> But the error message "trailing whitespace" doesn't clearly tell me
> what's wrong.
Modern versions use "diff --check", which should look like this (on my
LF-only box, at least):
$ mkdir repo && cd repo && git init
$ touch file && git add file && git commit -m one
$ printf 'foo\r\n' >file
$ git diff --check
file:1: trailing whitespace.
+foo^M
and if you use "git diff --color --check", the problem is highlighted.
> 1. Could you please modify Git so that, when such a problem happens,
> it instead prints an message saying that the file has CR+LF line
> endings, and that Git does not allow this?
It might be worth splitting the trailing whitespace detection into
"spaces and tabs at the end" and "CRLF", and providing different
messages (though it is hopefully also obvious with the new output that
it is a CRLF issue).
> 2. In addition, could you please enable the core.autocrlf and core.safecrlf
> options by default in the next version of Git?
I think that is up to your platform packaging, I think. I think msysgit
is shipping with core.autocrlf on by default these days. But again, I
don't know very much about that area.
-Peff
next prev parent reply other threads:[~2009-02-16 3:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-16 2:45 Improving CRLF error message; also, enabling autocrlf and safecrlf by default Jason Spiro
2009-02-16 3:04 ` Jeff King [this message]
2009-02-16 3:14 ` Junio C Hamano
2009-02-16 3:18 ` Jeff King
2009-02-16 3:29 ` Jason Spiro
2009-02-16 3:43 ` Improving CRLF error message; also, enabling autocrlf and?safecrlf " Jeff King
2009-02-16 3:08 ` Improving CRLF error message; also, enabling autocrlf and safecrlf " Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090216030446.GC18780@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=jasonspiro4@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).