summaryrefslogtreecommitdiff
path: root/commit-graph.c
AgeCommit message (Expand)AuthorFilesLines
2021-01-25Merge branch 'ma/more-opaque-lock-file'Libravatar Junio C Hamano1-3/+3
2021-01-21refs: switch peel_ref() to peel_iterated_oid()Libravatar Jeff King1-1/+1
2021-01-18commit-reach: use corrected commit dates in paint_down_to_common()Libravatar Abhishek Kumar1-0/+14
2021-01-18commit-graph: use generation v2 only if entire chain doesLibravatar Abhishek Kumar1-2/+28
2021-01-18commit-graph: implement generation data chunkLibravatar Abhishek Kumar1-11/+103
2021-01-18commit-graph: implement corrected commit dateLibravatar Abhishek Kumar1-4/+17
2021-01-18commit-graph: return 64-bit generation numberLibravatar Abhishek Kumar1-11/+11
2021-01-18commit-graph: add a slab to store topological levelsLibravatar Abhishek Kumar1-15/+30
2021-01-18commit-graph: consolidate fill_commit_graph_infoLibravatar Abhishek Kumar1-17/+10
2021-01-18commit-graph: fix regression when computing Bloom filtersLibravatar Abhishek Kumar1-2/+6
2021-01-06commit-graph: don't peek into `struct lock_file`Libravatar Martin Ågren1-3/+3
2021-01-04hash-lookup: rename from sha1-lookupLibravatar Martin Ågren1-1/+1
2021-01-04sha1-lookup: rename `sha1_pos()` as `hash_pos()`Libravatar Martin Ågren1-3/+3
2020-12-07commit-graph: use size_t for array allocation and indexingLibravatar Jeff King1-2/+2
2020-12-07commit-graph: replace packed_oid_list with oid_arrayLibravatar Jeff King1-47/+15
2020-12-07commit-graph: drop count_distinct_commits() functionLibravatar Jeff King1-41/+2
2020-11-02Merge branch 'ds/commit-graph-merging-fix'Libravatar Junio C Hamano1-3/+18
2020-10-09commit-graph: don't write commit-graph when disabledLibravatar Derrick Stolee1-0/+5
2020-10-09commit-graph: ignore duplicates when merging layersLibravatar Derrick Stolee1-3/+13
2020-09-29Merge branch 'tb/bloom-improvements'Libravatar Junio C Hamano1-42/+99
2020-09-25Merge branch 'ds/maintenance-part-1'Libravatar Junio C Hamano1-4/+4
2020-09-18builtin/commit-graph.c: introduce '--max-new-filters=<n>'Libravatar Taylor Blau1-2/+7
2020-09-17commit-graph: rename 'split_commit_graph_opts'Libravatar Taylor Blau1-20/+20
2020-09-17bloom: encode out-of-bounds filters as non-emptyLibravatar Taylor Blau1-0/+5
2020-09-17maintenance: add commit-graph taskLibravatar Derrick Stolee1-4/+4
2020-09-17bloom: use provided 'struct bloom_filter_settings'Libravatar Taylor Blau1-11/+10
2020-09-17bloom: split 'get_bloom_filter()' in twoLibravatar Taylor Blau1-3/+31
2020-09-17commit-graph.c: store maximum changed pathsLibravatar Taylor Blau1-0/+4
2020-09-09commit-graph: respect 'commitGraph.readChangedPaths'Libravatar Taylor Blau1-2/+4
2020-09-09commit-graph: pass a 'struct repository *' in more placesLibravatar Taylor Blau1-7/+10
2020-09-09commit-graph: introduce 'get_bloom_filter_settings()'Libravatar Taylor Blau1-0/+11
2020-08-17commit-graph: use the "hash version" byteLibravatar Derrick Stolee1-1/+8
2020-07-30Merge branch 'ds/commit-graph-bloom-updates' into masterLibravatar Junio C Hamano1-38/+110
2020-07-30Merge branch 'sg/commit-graph-cleanups' into masterLibravatar Junio C Hamano1-64/+48
2020-07-15Merge branch 'sg/commit-graph-progress-fix' into masterLibravatar Junio C Hamano1-22/+5
2020-07-09Merge branch 'tb/fix-persistent-shallow' into masterLibravatar Junio C Hamano1-1/+2
2020-07-09commit-graph: fix "Writing out commit graph" progress counterLibravatar SZEDER Gábor1-20/+2
2020-07-09commit-graph: fix progress of reachable commitsLibravatar SZEDER Gábor1-2/+3
2020-07-08commit.c: don't persist substituted parents when unshallowingLibravatar Taylor Blau1-1/+2
2020-07-01commit-graph: check chunk sizes after writingLibravatar SZEDER Gábor1-0/+7
2020-07-01commit-graph: simplify chunk writes into loopLibravatar SZEDER Gábor1-12/+16
2020-07-01commit-graph: unify the signatures of all write_graph_chunk_*() functionsLibravatar SZEDER Gábor1-16/+26
2020-07-01commit-graph: persist existence of changed-pathsLibravatar Derrick Stolee1-3/+42
2020-07-01bloom: fix logic in get_bloom_filter()Libravatar Derrick Stolee1-2/+6
2020-06-23commit-graph: change test to die on parse, not loadLibravatar Derrick Stolee1-4/+8
2020-06-23commit-graph: place bloom_settings in contextLibravatar Derrick Stolee1-6/+8
2020-06-17commit-graph: minimize commit_graph_data_slab accessLibravatar Abhishek Kumar1-14/+26
2020-06-17commit: move members graph_pos, generation to a slabLibravatar Abhishek Kumar1-20/+20
2020-06-17commit-graph: introduce commit_graph_data_slabLibravatar Abhishek Kumar1-10/+68
2020-06-08Merge branch 'tb/commit-graph-no-check-oids'Libravatar Junio C Hamano1-35/+27