On Fri, Aug 03, 2018 at 03:25:08PM +0200, Ævar Arnfjörð Bjarmason wrote: > > I'd be a bit careful with that, though, as the definition of "new" is > > vague there. > > > > For example, completing a thin pack may mean that the receiver creates a > > copy of a base object found in the main repo. That object isn't new as > > part of the push, nor was it even sent on the wire, but it will appear > > in the quarantine directory. But only sometimes, depending on whether we > > kept the sender's pack or exploded it to loose objects. > > Right, I mean: > > is_new = !in_quarantine() && in_main() > > Or: > > is_new = !in_main() > > Should work, in the latter case if the object really is missing from the > quarnatine too, other fsck bits will stop the push. Ah, OK. Yes, I agree that should work to cover new objects (including ones that the other side but aren't actually needed to update the refs, though hopefully that is rare). There may also be other object stores, if the main repository used alternates (or if somebody set GIT_ALTERNATE_OBJECT_DIRECTORIES). You can probably disregard that, though, as: 1. If you ignore the main repo, presumably you ignore its recursive info/alternates, too. 2. The easy mechanism for ignoring the main repo is to ignore GIT_ALTERNATE_OBJECT_DIRECTORIES, so you'd already be handling that. > But as you point out: > > is_new = in_quarantine() > > Cannot be relied upon, although it'll be true most of the time. > > Perhaps I'm missing some edge case above, but I wanted to reword it to > make sure I understood it correctly (and perhaps you have a correction). Nope, I just didn't think through what you were saying carefully enough. ;) -Peff