From: Junio C Hamano <gitster@pobox.com>
To: David Barr <davidbarr@google.com>
Cc: Jonathan Nieder <jrnieder@gmail.com>,
Git Mailing List <git@vger.kernel.org>,
Tay Ray Chuan <rctay89@gmail.com>,
Sverre Rabbelier <srabbelier@gmail.com>
Subject: Re: [PATCH] git-am: ignore leading whitespace before patch
Date: Fri, 05 Aug 2011 22:00:16 -0700 [thread overview]
Message-ID: <7vvcub16e7.fsf@alter.siamese.dyndns.org> (raw)
In-Reply-To: <CAFfmPPMY5FP8NbZ5Q15pW-NC_qs=i6FY7v6Pi8jkMAhkURFTmQ@mail.gmail.com> (David Barr's message of "Sat, 6 Aug 2011 11:56:53 +1000")
David Barr <davidbarr@google.com> writes:
> Hi Jonathan,
> ...
>>> diff --git a/git-am.sh b/git-am.sh
>>> index 463c741..19b2f0f 100755
>>> --- a/git-am.sh
>>> +++ b/git-am.sh
>>> @@ -199,7 +199,11 @@ check_patch_format () {
>>> # otherwise, check the first few lines of the first patch to try
>>> # to detect its format
>>> {
>>> - read l1
>>> + # Start from first line containing non-whitespace
>>> + until [ -n "$l1" ]
>>> + do
>>> + read l1
>>> + done
> ...
> Do you see any subtle issues in this tiny patch?
> I failed to include a test, I'll add at least one to the next version.
> I did check that it doesn't break any of the existing git-am tests.
It no longer checks "the first few lines" but can read a lot more, so the
comment that precedes this block is now invalid.
Also we are rather old fashioned and we never say "until [ ... ]" anywhere
in our shell scripts.
$ git grep -e until -- '*.sh'
Personally to me this is a borderline "Meh", in the sense that I wouldn't
bother to waste too much effort rejecting it, as I do not see downsides
other than these minor points.
Thanks.
next prev parent reply other threads:[~2011-08-06 5:00 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-02 22:20 [PATCH] git-am: ignore leading whitespace before patch David Barr
2011-08-03 12:28 ` Tay Ray Chuan
2011-08-03 13:21 ` Sverre Rabbelier
2011-08-03 13:31 ` Tay Ray Chuan
2011-08-03 13:33 ` Sverre Rabbelier
2011-08-06 1:56 ` David Barr
2011-08-06 5:00 ` Junio C Hamano [this message]
2011-08-08 2:49 ` [PATCH v2] am: " Jonathan Nieder
2011-08-08 5:10 ` David Barr
2011-08-08 5:31 ` David Barr
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=7vvcub16e7.fsf@alter.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=davidbarr@google.com \
--cc=git@vger.kernel.org \
--cc=jrnieder@gmail.com \
--cc=rctay89@gmail.com \
--cc=srabbelier@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).