From: Patrick Steinhardt <ps@pks.im>
To: Junio C Hamano <gitster@pobox.com>
Cc: "Christian Couder" <christian.couder@gmail.com>,
ふじを <ffjlabo@gmail.com>,
git@vger.kernel.org
Subject: Re: Trailers Containing Underscore or Dot Characters
Date: Fri, 15 Nov 2024 08:42:37 +0100 [thread overview]
Message-ID: <Zzb7aI2C2uh_nwuc@pks.im> (raw)
In-Reply-To: <xmqqa5e2ahqf.fsf@gitster.g>
On Thu, Nov 14, 2024 at 07:31:20AM +0900, Junio C Hamano wrote:
> Christian Couder <christian.couder@gmail.com> writes:
>
> >> Date: Wed Nov 13 08:28:19 2024 +0300
> >> Test
> >> test_hoge: fuga:
> >> test.hoge: fuga:
> >> test-hoge: fuga
> >> ```
> >>
> >> What's different between what you expected and what actually happened?
> >>
> >> The one for `--trailer "test-hoge: fuga"` is finished with nothing.
> >> But The others for ones which have "_" or "." are finished with ":".
> >
> > Yeah, that's because '-' is allowed in trailer keys while '_' and '.' are not.
>
> Thanks for responding.
>
> I did not offhand recall seeing anywhere in our documentation set
> that defines what a valid trailer key looks like, so I went and read
> the interpret-trailers manual page and did not find any. For
> example, is this a valid trailer line, even if we know '-' is
> "allowed in trailer keys"?
>
> -test: fuga
>
> Is this a valid trailer line, when your configuration adds '-' to
> the set of separator characters?
>
> test- fuga
>
> We do not even have an entry in the glossary for "trailer", and that
> probably is the first thing we need to fix.
The second thing we should be fixing is that git-interpret-trailers(1)
allows us to add invalid trailers:
$ touch file
$ git interpret-trailers --in-place file --trailer 'Valid-trailer: bar'
$ git interpret-trailers --parse file
Valid-trailer: bar
$ git interpret-trailers --in-place file --trailer 'Invalid_trailer: bar'
$ git interpret-trailers --parse file
$ cat file
Valid-trailer: bar
Invalid_trailer: bar:
After the second invocation of git-interpret-trailers(1) it is unable to
find any trailers anymore due to the bogus format of the second trailer
line.
Patrick
next prev parent reply other threads:[~2024-11-15 7:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-13 7:40 Trailers Containing Underscore or Dot Characters ふじを
2024-11-13 21:57 ` Christian Couder
2024-11-13 22:31 ` Junio C Hamano
2024-11-15 7:42 ` Patrick Steinhardt [this message]
2024-11-18 1:07 ` Junio C Hamano
2024-11-17 19:33 ` [PATCH] Documentation/glossary: describe "trailer" kristofferhaugsbakk
2024-11-18 0:40 ` Junio C Hamano
2024-11-18 7:32 ` Christian Couder
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=Zzb7aI2C2uh_nwuc@pks.im \
--to=ps@pks.im \
--cc=christian.couder@gmail.com \
--cc=ffjlabo@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.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).