* [PATCH v3] trailer: support multiline title
@ 2015-08-30 19:14 Christian Couder
2015-08-31 8:38 ` Matthieu Moy
2015-08-31 18:13 ` Junio C Hamano
0 siblings, 2 replies; 7+ messages in thread
From: Christian Couder @ 2015-08-30 19:14 UTC (permalink / raw)
To: Matthieu Moy, Junio C Hamano; +Cc: git, Christian Couder
We currently ignore the first line passed to `git interpret-trailers`,
when looking for the beginning of the trailers.
Unfortunately this does not work well when a commit is created with a
line break in the title, using for example the following command:
git commit -m 'place of
code: change we made'
That's why instead of ignoring only the first line, it is better to
ignore the first paragraph.
---
t/t7513-interpret-trailers.sh | 14 ++++++++++++++
trailer.c | 15 +++++++++++----
2 files changed, 25 insertions(+), 4 deletions(-)
diff --git a/t/t7513-interpret-trailers.sh b/t/t7513-interpret-trailers.sh
index 9577b4e..56efe88 100755
--- a/t/t7513-interpret-trailers.sh
+++ b/t/t7513-interpret-trailers.sh
@@ -112,6 +112,20 @@ test_expect_success 'with only a title in the message' '
test_cmp expected actual
'
+test_expect_success 'with multiline title in the message' '
+ cat >expected <<-\EOF &&
+ place of
+ code: change
+
+ Reviewed-by: Peff
+ Acked-by: Johan
+ EOF
+ printf "%s\n%s\n" "place of" "code: change" |
+ git interpret-trailers --trailer "Reviewed-by: Peff" \
+ --trailer "Acked-by: Johan" >actual &&
+ test_cmp expected actual
+'
+
test_expect_success 'with config setup' '
git config trailer.ack.key "Acked-by: " &&
cat >expected <<-\EOF &&
diff --git a/trailer.c b/trailer.c
index b808868..6f3416f 100644
--- a/trailer.c
+++ b/trailer.c
@@ -735,15 +735,22 @@ static int find_patch_start(struct strbuf **lines, int count)
*/
static int find_trailer_start(struct strbuf **lines, int count)
{
- int start, only_spaces = 1;
+ int start, end_of_title, only_spaces = 1;
+
+ /* The first paragraph is the title and cannot be trailers */
+ for (start = 0; start < count; start++) {
+ if (lines[start]->buf[0] == comment_line_char)
+ continue;
+ if (contains_only_spaces(lines[start]->buf))
+ break;
+ }
+ end_of_title = start;
/*
* Get the start of the trailers by looking starting from the end
* for a line with only spaces before lines with one separator.
- * The first line must not be analyzed as the others as it
- * should be either the message title or a blank line.
*/
- for (start = count - 1; start >= 1; start--) {
+ for (start = count - 1; start >= end_of_title; start--) {
if (lines[start]->buf[0] == comment_line_char)
continue;
if (contains_only_spaces(lines[start]->buf)) {
--
2.5.0.402.gcabd5e3.dirty
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-30 19:14 [PATCH v3] trailer: support multiline title Christian Couder
@ 2015-08-31 8:38 ` Matthieu Moy
2015-08-31 9:14 ` Christian Couder
2015-08-31 18:13 ` Junio C Hamano
1 sibling, 1 reply; 7+ messages in thread
From: Matthieu Moy @ 2015-08-31 8:38 UTC (permalink / raw)
To: Christian Couder; +Cc: Junio C Hamano, git, Christian Couder
Christian Couder <christian.couder@gmail.com> writes:
> That's why instead of ignoring only the first line, it is better to
> ignore the first paragraph.
> ---
Lacks sign-off again.
This replaces PATCH 2/2 in your previous series, but requires PATCH 1/2,
right? If so that would be simpler to resend both patches IMHO.
The patch works for me, thanks.
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-31 8:38 ` Matthieu Moy
@ 2015-08-31 9:14 ` Christian Couder
2015-08-31 9:17 ` Matthieu Moy
2015-08-31 18:13 ` Junio C Hamano
0 siblings, 2 replies; 7+ messages in thread
From: Christian Couder @ 2015-08-31 9:14 UTC (permalink / raw)
To: Matthieu Moy; +Cc: Junio C Hamano, git, Christian Couder
On Mon, Aug 31, 2015 at 10:38 AM, Matthieu Moy
<Matthieu.Moy@grenoble-inp.fr> wrote:
> Christian Couder <christian.couder@gmail.com> writes:
>
>> That's why instead of ignoring only the first line, it is better to
>> ignore the first paragraph.
>> ---
>
> Lacks sign-off again.
Ooops, sorry.
> This replaces PATCH 2/2 in your previous series, but requires PATCH 1/2,
> right? If so that would be simpler to resend both patches IMHO.
This first patch is already in master. That's why I only sent the
second one. But yeah I could have explained that after the three
dashes.
> The patch works for me, thanks.
Thanks for reviewing and testing,
Christian.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-31 9:14 ` Christian Couder
@ 2015-08-31 9:17 ` Matthieu Moy
2015-08-31 18:13 ` Junio C Hamano
1 sibling, 0 replies; 7+ messages in thread
From: Matthieu Moy @ 2015-08-31 9:17 UTC (permalink / raw)
To: Christian Couder; +Cc: Junio C Hamano, git, Christian Couder
Christian Couder <christian.couder@gmail.com> writes:
> This first patch is already in master. That's why I only sent the
> second one. But yeah I could have explained that after the three
> dashes.
OK, my bad, I should have "git fetch"ed.
Thanks,
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-30 19:14 [PATCH v3] trailer: support multiline title Christian Couder
2015-08-31 8:38 ` Matthieu Moy
@ 2015-08-31 18:13 ` Junio C Hamano
1 sibling, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2015-08-31 18:13 UTC (permalink / raw)
To: Christian Couder; +Cc: Matthieu Moy, git, Christian Couder
Christian Couder <christian.couder@gmail.com> writes:
> We currently ignore the first line passed to `git interpret-trailers`,
> when looking for the beginning of the trailers.
>
> Unfortunately this does not work well when a commit is created with a
> line break in the title, using for example the following command:
>
> git commit -m 'place of
> code: change we made'
>
> That's why instead of ignoring only the first line, it is better to
> ignore the first paragraph.
> ---
> t/t7513-interpret-trailers.sh | 14 ++++++++++++++
> trailer.c | 15 +++++++++++----
> 2 files changed, 25 insertions(+), 4 deletions(-)
>
> diff --git a/t/t7513-interpret-trailers.sh b/t/t7513-interpret-trailers.sh
> index 9577b4e..56efe88 100755
> --- a/t/t7513-interpret-trailers.sh
> +++ b/t/t7513-interpret-trailers.sh
> @@ -112,6 +112,20 @@ test_expect_success 'with only a title in the message' '
> test_cmp expected actual
> '
>
> +test_expect_success 'with multiline title in the message' '
> + cat >expected <<-\EOF &&
> + place of
> + code: change
> +
> + Reviewed-by: Peff
> + Acked-by: Johan
> + EOF
> + printf "%s\n%s\n" "place of" "code: change" |
Just FYI, I think "%s\n" is sufficient to produce multi-line output,
e.g.
printf "%s xyzzy\n" a b c d: e:
> + git interpret-trailers --trailer "Reviewed-by: Peff" \
> + --trailer "Acked-by: Johan" >actual &&
> + test_cmp expected actual
> +'
> +
> test_expect_success 'with config setup' '
> git config trailer.ack.key "Acked-by: " &&
> cat >expected <<-\EOF &&
> diff --git a/trailer.c b/trailer.c
> index b808868..6f3416f 100644
> --- a/trailer.c
> +++ b/trailer.c
> @@ -735,15 +735,22 @@ static int find_patch_start(struct strbuf **lines, int count)
> */
> static int find_trailer_start(struct strbuf **lines, int count)
> {
> - int start, only_spaces = 1;
> + int start, end_of_title, only_spaces = 1;
> +
> + /* The first paragraph is the title and cannot be trailers */
> + for (start = 0; start < count; start++) {
> + if (lines[start]->buf[0] == comment_line_char)
> + continue;
> + if (contains_only_spaces(lines[start]->buf))
> + break;
> + }
> + end_of_title = start;
>
> /*
> * Get the start of the trailers by looking starting from the end
> * for a line with only spaces before lines with one separator.
> - * The first line must not be analyzed as the others as it
> - * should be either the message title or a blank line.
> */
> - for (start = count - 1; start >= 1; start--) {
> + for (start = count - 1; start >= end_of_title; start--) {
> if (lines[start]->buf[0] == comment_line_char)
> continue;
> if (contains_only_spaces(lines[start]->buf)) {
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-31 9:14 ` Christian Couder
2015-08-31 9:17 ` Matthieu Moy
@ 2015-08-31 18:13 ` Junio C Hamano
2015-08-31 18:26 ` Christian Couder
1 sibling, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2015-08-31 18:13 UTC (permalink / raw)
To: Christian Couder; +Cc: Matthieu Moy, git, Christian Couder
Christian Couder <christian.couder@gmail.com> writes:
> On Mon, Aug 31, 2015 at 10:38 AM, Matthieu Moy
> <Matthieu.Moy@grenoble-inp.fr> wrote:
>> Christian Couder <christian.couder@gmail.com> writes:
>>
>>> That's why instead of ignoring only the first line, it is better to
>>> ignore the first paragraph.
>>> ---
>>
>> Lacks sign-off again.
>
> Ooops, sorry.
Let me forge one just for this time.
>
>> This replaces PATCH 2/2 in your previous series, but requires PATCH 1/2,
>> right? If so that would be simpler to resend both patches IMHO.
>
> This first patch is already in master. That's why I only sent the
> second one. But yeah I could have explained that after the three
> dashes.
>
>> The patch works for me, thanks.
>
> Thanks for reviewing and testing,
> Christian.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] trailer: support multiline title
2015-08-31 18:13 ` Junio C Hamano
@ 2015-08-31 18:26 ` Christian Couder
0 siblings, 0 replies; 7+ messages in thread
From: Christian Couder @ 2015-08-31 18:26 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Matthieu Moy, git, Christian Couder
On Mon, Aug 31, 2015 at 8:13 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Christian Couder <christian.couder@gmail.com> writes:
>
>> On Mon, Aug 31, 2015 at 10:38 AM, Matthieu Moy
>> <Matthieu.Moy@grenoble-inp.fr> wrote:
>>> Christian Couder <christian.couder@gmail.com> writes:
>>>
>>>> That's why instead of ignoring only the first line, it is better to
>>>> ignore the first paragraph.
>>>> ---
>>>
>>> Lacks sign-off again.
>>
>> Ooops, sorry.
>
> Let me forge one just for this time.
Great, thanks!
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-08-31 18:27 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-30 19:14 [PATCH v3] trailer: support multiline title Christian Couder
2015-08-31 8:38 ` Matthieu Moy
2015-08-31 9:14 ` Christian Couder
2015-08-31 9:17 ` Matthieu Moy
2015-08-31 18:13 ` Junio C Hamano
2015-08-31 18:26 ` Christian Couder
2015-08-31 18:13 ` Junio C Hamano
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).