From: Phillip Wood <phillip.wood123@gmail.com>
To: Karthik Nayak <karthik.188@gmail.com>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: [PATCH v4] blame: print unblamable and ignored commits in porcelain mode
Date: Wed, 2 Apr 2025 14:07:31 +0100 [thread overview]
Message-ID: <494c9e59-b7b2-4a1c-ad41-3a7fc72503c9@gmail.com> (raw)
In-Reply-To: <CAOLa=ZQMYn2eYndX0saTKnuzAacjtNZeTb9PCrcNC50nneAq5g@mail.gmail.com>
[Restoring cc to the mailing list that I accidentally dropped in my
previous message]
On 01/04/2025 17:57, Karthik Nayak wrote:
> Phillip Wood <phillip.wood123@gmail.com> writes:
>> On 31/03/2025 16:25, Karthik Nayak wrote:
>>> phillip.wood123@gmail.com writes:
>>>> On 30/03/2025 21:43, Karthik Nayak wrote:
>>>>>
>>>>> +for opt in --porcelain --line-porcelain
>>>>> +do
>>>>> + test_expect_success "mark_unblamable_lines with $opt" '
>>>>> + sha=$(git rev-parse Y) &&
>>>>> +
>>>>> + git -c blame.markUnblamableLines=false blame $opt --ignore-rev Y file >raw &&
>>>>> + sed -e "s/^\ty3/unblamable\n&/" raw >expect &&
>>>>> + cp expect raw &&
>>>>> + sed -e "s/^\ty4/unblamable\n&/" raw >expect &&
>>>>
>>>> Thanks for improving the test. Unfortunately using '\n' in the
>>>> replacement text is not portable [1] (the normal backslash escapes are
>>>> allowed in the pattern though so the '\t' is fine). One has to write a
>>>> literal newline escaped with a backslash. However here we want to insert
>>>> a whole new line of text into the output without changing the original
>>>> so I would write it as
>>>
>>> Thanks for bringing this to my notice. I didn't know.
>>>
>>>> sed -e "/^\ty3/a\\" -e unblamable -e "/^\ty4/a\\" -e unblamable \
>>>> raw >expect
>>>
>>> This appends 'unblamable' to the next line, but we want to prepend it.
>>
>> Sorry, I misread the original. If you use 'i' instead of 'a' that will
>> insert a new line before the current one.
>
> Seems like this won't work either, since MacOS complains [1] about it:
>
> expecting success of 8013.16 'mark_ignored_lines with --line-porcelain':
> sha=$(git rev-parse Y) &&
> git -c blame.markIgnoredLines=false blame $opt --ignore-rev Z file >raw &&
> sed -e "/^ line-one-Z/i\\" -e ignored \
> -e "/^ line-two-Z/i\\" -e ignored \
> raw >expect &&
> git -c blame.markIgnoredLines=true blame $opt --ignore-rev Z file >actual &&
> test_cmp expect actual
>
> +++ git rev-parse Y
> ++ sha=e0d35d6f2d5fab63267e58d684cea1ECG86f12b1
> ++ git -c blame.markIgnoredLines=false blame --line-porcelain
> --ignore-rev Z file
> ++ sed -e '/^ line-one-Z/i\' -e ignored -e '/^ line-two-Z/i\' -e ignored raw
> sed: 1: "ignored
> ": command i expects \ followed by text
> error: last command exited with $?=1
Oh, that's a pain, I thought it was supposed to treat each '-e' as a
separate line.
> I did have success [2] with using a heredoc instead:
>
> cat > sedscript <<- 'EOF' &&
> /^ y3/i\\
> unblamable
> /^ y4/i\\
> unblamable
> EOF
> sed -f sedscript raw >expect &&
>
> What do you think about this?
I think that's the best way then. We could pass a multiline string with
'-e' but then we wouldn't be able to indent the "unblamable" lines.
Best Wishes
Phillip
> [1]: https://gitlab.com/gitlab-org/git/-/jobs/9581456879
> [2]: https://gitlab.com/gitlab-org/git/-/pipelines/1746265204
next prev parent reply other threads:[~2025-04-02 13:07 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-21 16:39 [PATCH] blame: fix unblamable and ignored lines in porcelain mode Karthik Nayak
2025-03-23 15:58 ` Junio C Hamano
2025-03-24 10:16 ` Patrick Steinhardt
2025-03-24 10:37 ` Toon Claes
2025-03-24 20:04 ` Karthik Nayak
2025-03-25 8:45 ` Toon Claes
2025-03-25 10:31 ` Karthik Nayak
2025-03-25 19:44 ` Junio C Hamano
2025-03-24 20:00 ` Karthik Nayak
2025-03-24 19:56 ` Karthik Nayak
2025-03-26 21:06 ` [PATCH v2] blame: print unblamable and ignored commits " Karthik Nayak
2025-03-26 22:49 ` Eric Sunshine
2025-03-27 11:07 ` Karthik Nayak
2025-03-29 19:06 ` Junio C Hamano
2025-03-28 7:00 ` Patrick Steinhardt
2025-03-29 10:26 ` Karthik Nayak
2025-03-29 18:21 ` [PATCH v3] " Karthik Nayak
2025-03-30 4:56 ` Junio C Hamano
2025-03-30 9:28 ` Phillip Wood
2025-03-30 20:43 ` [PATCH v4] " Karthik Nayak
2025-03-31 7:05 ` Patrick Steinhardt
2025-03-31 7:34 ` Karthik Nayak
2025-03-31 10:24 ` phillip.wood123
2025-03-31 10:47 ` Phillip Wood
[not found] ` <CAOLa=ZSQ7PiasRk23Hxp7Gk5vU-x83N4e4WTxG3eVsxK0zKnWA@mail.gmail.com>
[not found] ` <f39c6468-aade-489a-bc7b-c3d342a22cb8@gmail.com>
[not found] ` <CAOLa=ZQMYn2eYndX0saTKnuzAacjtNZeTb9PCrcNC50nneAq5g@mail.gmail.com>
2025-04-02 13:07 ` Phillip Wood [this message]
2025-04-03 16:03 ` [PATCH v5] " Karthik Nayak
2025-04-04 15:58 ` Phillip Wood
2025-04-08 0:32 ` 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=494c9e59-b7b2-4a1c-ad41-3a7fc72503c9@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=git@vger.kernel.org \
--cc=karthik.188@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
/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).