From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: aaron smith <beingthexemplarylists@gmail.com>, git@vger.kernel.org
Subject: Re: suppress fatal pathspec errors from "git add"?
Date: Sun, 3 Jan 2010 03:28:05 -0500 [thread overview]
Message-ID: <20100103082804.GA23748@sigill.intra.peff.net> (raw)
In-Reply-To: <7vk4vz38v0.fsf@alter.siamese.dyndns.org>
On Sun, Jan 03, 2010 at 12:12:19AM -0800, Junio C Hamano wrote:
> If your primary activity that happens in the work tree were:
>
> while :
> do
> file=$(date +"random-%H%M%S")
> >"$file"
> rm -f "$file"
> done
>
> and your add were done in
>
> while sleep 3600
> do
> git add $(for i in *; do test -e $i && echo $i; done)
> git commit -m "hourly snapshot"
> done
>
> totally asynchronously without coordinating with what the primary activity
> is doing, your "test -e && echo" can race with a concurrent "rm".
Of course. But in such a situation, you are almost certainly better off
doing "git add -A". The external loop is really only useful if you want
to add a subset of the files that may or may not exist for some reason.
Which is getting pretty specific and crazy.
I haven't checked to see whether "add -A" has a race in discovering
files versus actually adding them (I suppose there has to be one...even
if we open() immediately and use fstat() and friends for everything
else, there still must be a race between getting the name from readdir()
and calling open()).
And I can see that as a potentially useful workflow: you are doing
regular snapshots of a set of files which are being changed by an
outside force. You care about errors, but not files disappearing between
readdir() and stat(). The "find" command has an "--ignore-readdir-race"
option, which is what you would want.
But that is not "--ignore-errors should also ignore missing files". It
is "I want to ignore missing files but not other errors".
> Even though I think it is an insane use pattern that we shouldn't bother
> to bend too much backwards to support it, --ignore-errors were added
> primarily for a similar use case (i.e. by the time we try to read it, it
> is either gone or it cannot be read by the user who runs "git add"), so in
> that sense it _might_ make sense to ignore all errors with the option. If
> we choose to go in that direction, it would also make tons of sense to
> update the documentation of the option to caution more strongly that its
> use is a sign of insanity and is discouraged at the same time.
I tracked down the original thread and it looks like the motivation was
to handle repositories with a mixed set of readable and inaccessible
(due to permissions) files:
http://article.gmane.org/gmane.comp.version-control.git/75676
So I think it's not _totally_ insane there. You would do "git add
--ignore-errors ." instead of having to manually write the shell loop of
accessible items (though personally, I think I would just write the
shell loop in that situation).
That's just my two cents on the matter. I'm not personally planning on
writing patches for either case.
-Peff
next prev parent reply other threads:[~2010-01-03 8:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-31 21:24 suppress fatal pathspec errors from "git add"? aaron smith
2010-01-03 7:40 ` Jeff King
2010-01-03 8:00 ` aaron smith
2010-01-03 8:12 ` Junio C Hamano
2010-01-03 8:28 ` Jeff King [this message]
2010-01-03 9:44 ` Jakub Narebski
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=20100103082804.GA23748@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=beingthexemplarylists@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).