On Wed, Oct 03, 2018 at 05:19:41PM +0200, Ævar Arnfjörð Bjarmason wrote: > >> >> >> So we should make "git gc --auto" be run on clone, > >> >> > > >> >> > There is no garbage after 'git clone'... > >> >> > >> >> "git gc" is really "git gc-or-create-indexes" these days. > >> > > >> > Because it happens to be convenient to create those indexes at > >> > gc-time. But that should not be an excuse to run gc when by > >> > definition no gc is needed. > >> > >> Ah, I thought you just had an objection to the "gc" name being used for > >> non-gc stuff, > > > > But you thought right, I do have an objection against that. 'git gc' > > should, well, collect garbage. Any non-gc stuff is already violating > > separation of concerns. > > Ever since git-gc was added back in 30f610b7b0 ("Create 'git gc' to > perform common maintenance operations.", 2006-12-27) it has been > described as: > > git-gc - Cleanup unnecessary files and optimize the local repository > > Creating these indexes like the commit-graph falls under "optimize the > local repository", But it doesn't fall under "cleanup unnecessary files", which the commit-graph file is, since, strictly speaking, it's purely optimization. That description came about, because cleaning up unnecessary files, notably combining lots of loose refs into a single packed-refs file and combining lots of loose objects and pack files into a single pack file, could not only make the repository smaller (barring too many exploding unreachable objects), but, as it turned out, could also make Git operations in that repository faster. To me, the main goal of the command is cleanup. Optimization, however beneficial, is its side effect, and I assume the "optimize" part was added to the description mainly to inform and "encourage" users. After all, the command is called 'git gc', not 'git optimize-repo'. > and 3rd party tools (e.g. the repo tool doing this > came up on list recently) have been calling "gc --auto" with this > assumption. > > >> but if you mean we shouldn't do a giant repack right after > >> clone I agree. > > > > And, I also mean that since 'git clone' knows that there can't > > possibly be any garbage in the first place, then it shouldn't call 'gc > > --auto' at all. However, since it also knows that there is a lot of > > new stuff, then it should create a commit-graph if enabled. > > Is this something you think just because the tool isn't called > git-gc-and-optimzie, or do you think this regardless of what it's > called? Well, that still has 'gc' in it... > I don't see how splitting up the entry points for "detect if we need to > cleanup or optimize the repo" leaves us with a better codebase for the > reasons noted in > https://public-inbox.org/git/87pnwrgll2.fsf@xxxxxxxxxxxxxxxxxxx/ Such a separation would be valuable for those having gc.auto = 0 in their config. Or, in general, to have a clearly marked entry point to update all the enabled "purely-optimization" files without 'gc' exploding a bunch of "just-became-unreachable" objects from deleted reflog entries and packfiles, or without performing a comparatively expensive repacking. Note the "clearly marked"; I don't think teaching 'gc [--auto]' various tricks to only create/update these files without doing what it is fundamentally supposed to do qualifies for that.