On Wed, Mar 19, 2025 at 02:20:15PM -0300, Lucas Seiki Oshiro wrote: > From Documentation/config.adoc: > > """ > The file consists of sections and variables. A section begins with > the name of the section in square brackets and continues until the next > section begins. Section names are case-insensitive. Only alphanumeric > characters, `-` and `.` are allowed in section names. Each variable > must belong to some section, which means that there must be a section > header before the first setting of a variable. > > [...] > > Subsection names are case sensitive and can contain any characters except > newline and the null byte. > > The variable names are case-insensitive, allow only alphanumeric characters > and `-`, and must start with an alphabetic character. > """ I don't think it's necessary to quote this whole paragraph here, as most of us should be quite familiar with its format. I'd rather summarize the info a bit and explain how we can use the userdiff patterns for the general structure of the config. And in case there are any subtleties in the format it may make sense to specifically point out those instead of quoting the whole manual. > Then, add a new builtin driver for gitconfig files, where: > > - the funcname regular expression matches sections and subsections, > i. e. the pattern [SECTION] or [SECTION "SUBSECTION"], where the > section is composed by alphanumeric numbers, `-` and `.`, and > subsection names may be composed by any characters; Okay, makes sense. > - word_regex is more permissive, matching any word with one or more > non-whitespace characters. It would be nice to provide context _why_ it is more permissive and what the effect is. The order of the commit message in our project is typically a bit different than what you have here: we first explain the actual problem that we aim to solve before discussing how you solve it. The code change itself looks sensible to me. Patrick