Re: [PATCH v3 10/11] maintenance: add auto condition for commit-graph task
From: Jonathan Tan <hidden>
Date: 2020-08-26 23:02:58
From: Jonathan Tan <hidden>
Date: 2020-08-26 23:02:58
From: Derrick Stolee <redacted> Instead of writing a new commit-graph in every 'git maintenance run --auto' process (when maintenance.commit-graph.enalbed is configured to be true), only write when there are "enough" commits not in a commit-graph file. This count is controlled by the maintenance.commit-graph.auto config option. To compute the count, use a depth-first search starting at each ref, and leaving markers using the PARENT1 flag. If this count reaches the limit,
PARENT1 -> SEEN Other than that, all the 11 patches look good.