public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: Collin Funk <collin.funk1@gmail.com>
Cc: aum2357 <ahambrahmasmi2357@gmail.com>,  git@vger.kernel.org
Subject: Re: [PATCH] Signed-off-by: aum2357 <ahambrahmasmi2357@gmail.com>
Date: Fri, 13 Mar 2026 10:43:13 -0700	[thread overview]
Message-ID: <xmqqa4wb62xa.fsf@gitster.g> (raw)
In-Reply-To: <m1fr63zt91.fsf@gmail.com> (Collin Funk's message of "Fri, 13 Mar 2026 07:41:46 -0700")

Collin Funk <collin.funk1@gmail.com> writes:

> Subject: Re: [PATCH] Signed-off-by: aum2357 <ahambrahmasmi2357@gmail.com>

The commit title is not where sign-off is made.

> aum2357 <ahambrahmasmi2357@gmail.com> writes:
>
>> diff: use conventional comparison order

The first line of the commit body begins with "diff:" but the patch
is about "add".

>> Replace `0 <= addremove_explicit` with `addremove_explicit >= 0`
>> to follow the common coding style where variables appear on the
>> left side of comparisons.
>> ---
>>  builtin/add.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/builtin/add.c b/builtin/add.c
>> index 0ee21692c2..ad0d6047af 100644
>> --- a/builtin/add.c
>> +++ b/builtin/add.c
>> @@ -432,7 +432,7 @@ int cmd_add(int argc,
>>  	argc--;
>>  	argv++;
>>  
>> -	if (0 <= addremove_explicit)
>> +	if ( addremove_explicit >= 0 )
> ... We also generally prefer the previous ordering there.

CodingGuidelines say that "We prefer a space between the function
name and the parentheses, and no space inside the parentheses.".  

It also says that "less stable value on the left hand side" and
"textual order match the actual order of values" are both valid ways
to write comparisons, and concludes "Just do not mix styles in the
same part of the code and mimic existing styles in the
neighbourhood."

And as you point out, I think this file prefers the "textual order
matches actual order" style (there is only one violation of it in
the file, if I counted correctly, in prune_directory()).

Many things in this patch contradicts the coding guidelines X-<.  I
wish if the vger mailing list can use some e-mail lint installed to
bounce a patch e-mail that ignores our guides like CodingGuidelines
and SubmittingPatches before it reaches the list to the author, with
explanation.




  reply	other threads:[~2026-03-13 17:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-13 13:39 [PATCH] Signed-off-by: aum2357 <ahambrahmasmi2357@gmail.com> aum2357
2026-03-13 14:41 ` Collin Funk
2026-03-13 17:43   ` Junio C Hamano [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-03-13 13:58 aum2357
2026-03-13 13:55 aum2357
2026-03-13 13:34 aum2357

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=xmqqa4wb62xa.fsf@gitster.g \
    --to=gitster@pobox.com \
    --cc=ahambrahmasmi2357@gmail.com \
    --cc=collin.funk1@gmail.com \
    --cc=git@vger.kernel.org \
    /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