Jonathan Tan <jonathantanmy@xxxxxxxxxx> writes: >> From: Derrick Stolee <dstolee@xxxxxxxxxxxxx> >> >> 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. Thanks.