From: Jeff King <peff@peff.net>
To: Jon Forrest <nobozo@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Is Git Add Supposed to Work Like This (git 2.50)?
Date: Sun, 7 Sep 2025 19:34:56 -0400 [thread overview]
Message-ID: <20250907233456.GA1281511@coredump.intra.peff.net> (raw)
In-Reply-To: <63045080-74d6-4835-9d9c-4d3558acdbfb@gmail.com>
On Sat, Sep 06, 2025 at 07:02:53PM -0700, Jon Forrest wrote:
> Apparently the presence of even 1 invalid file invalidates
> the whole 'git add' command, no matter how many valid files
> are included.
>
> Is this deliberate?
Yes. The C code here goes back to f25933987f (builtin-add: warn on
unmatched pathspecs, 2006-05-17), which is in turn adapting 45e48120bb
(Detect misspelled pathspec to git-add, 2006-02-15) from the shell
version. Which is pulling the same feature from git-commit's bba319b5ce
(commit: detect misspelled pathspec while making a partial commit.,
2006-02-14). Which in turn from this thread:
https://lore.kernel.org/git/7vfymlr7n8.fsf@assigned-by-dhcp.cox.net/
sounds like it came from cogito. I didn't follow the trail to the #git
archives mentioned there. ;)
Interestingly Pasky does mention that cogito behaved as you expected
(quietly ignoring a single misspelling) and considered it a bug.
I guess one could argue either way (though probably not at this point in
time, as switching behaviors would cause confusion). But one challenge
with "partial success" like this is that the exit code is binary. If we
return "0" even though some items were ignored, callers may miss a
failure. If we return "1" even though some items were added, callers may
not realize they've mutated the state (and might need to rollback
depending on what they were trying to accomplish).
I think Git's philosophy is along the lines of: if we are not sure your
command was well-formed, do nothing. You can always re-issue the command
with a corrected set of arguments.
-Peff
next prev parent reply other threads:[~2025-09-07 23:35 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-07 2:02 Is Git Add Supposed to Work Like This (git 2.50)? Jon Forrest
2025-09-07 8:10 ` Re " K Jayatheerth
2025-09-07 23:34 ` Jeff King [this message]
2025-09-09 16:00 ` Jon Forrest
2025-09-09 18:33 ` Jon Forrest
2025-09-09 18:42 ` Jeff King
2025-09-09 20:55 ` Junio C Hamano
2025-09-09 21:01 ` Jeff King
2025-09-09 18:40 ` Jeff King
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=20250907233456.GA1281511@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=nobozo@gmail.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