On Mon, Jan 25, 2021 at 03:21:17PM -0500, Taylor Blau wrote: > > Oh, one subtlety here: this is in pack-objects itself, _not_ in > > git-repack. This has bit us before with options like > > repack.writebitmaps, which was originally pack.writebitmaps and > > introduced all sorts of awkwardness (because pack-objects serves many > > other purposes besides repacks). > > I'd think that we'd want a single option to control whether or not > reverse indexes are written to disk. I briefly considered (and I believe > that you and I even discussed) having options to control this behavior > per command, but it got out of hand quickly. Yeah, I think per-command is something we should avoid. My concern is mostly that pack-objects in a non-repack setting would accidentally try to write a .rev file (or complain that it cannot). But again, we already have the same potential issue for .idx files, so by following those code paths as you did, we should be OK. And certainly we test that code path a lot in the normal test suite (i.e., every fetch or push), so your run-the-test-suite-with-rev-files patches from later would presumably catch it otherwise. > And that might have been OK, but I don't think the complexity was even > warranted, because really on-disk reverse indexes are an all-or-nothing > thing. That is: either you want to have revindexes accompanying .packs, > or you don't. IOW, it doesn't matter whether those packs were pushed to > us, or generated during repack, or from another pack-objects or what > have you. Right, I agree with all of that. -Peff