summaryrefslogtreecommitdiffstats
path: root/commit-reach.c
AgeCommit message (Expand)AuthorLines
2025-10-24commit-reach: avoid commit_list_insert_by_date()René Scharfe-5/+9
2024-12-27commit-reach: use `size_t` to track indices when computing merge basesPatrick Steinhardt-4/+3
2024-12-27commit-reach: use `size_t` to track indices in `get_reachable_subset()`Patrick Steinhardt-4/+4
2024-12-27commit-reach: use `size_t` to track indices in `remove_redundant()`Patrick Steinhardt-23/+30
2024-12-27commit-reach: fix type of `min_commit_date`Patrick Steinhardt-2/+2
2024-12-27commit-reach: fix index used to loop through unsigned integerPatrick Steinhardt-2/+1
2024-12-06global: mark code units that generate warnings with `-Wsign-compare`Patrick Steinhardt-0/+1
2024-08-26Merge branch 'ds/for-each-ref-is-base'Junio C Hamano-0/+126
2024-08-14commit-reach: add get_branch_base_for_tipDerrick Stolee-0/+126
2024-08-01commit-reach: fix trivial memory leak when computing reachabilityPatrick Steinhardt-0/+1
2024-06-14global: introduce `USE_THE_REPOSITORY_VARIABLE` macroPatrick Steinhardt-0/+2
2024-05-27commit-reach: fix memory leak in `ahead_behind()`Patrick Steinhardt-0/+4
2024-02-29commit-reach(repo_get_merge_bases_many_dirty): pass on errorsJohannes Schindelin-10/+6
2024-02-29commit-reach(repo_get_merge_bases_many): pass on "missing commits" errorsJohannes Schindelin-10/+6
2024-02-29commit-reach(get_octopus_merge_bases): pass on "missing commits" errorsJohannes Schindelin-9/+11
2024-02-29commit-reach(repo_get_merge_bases): pass on "missing commits" errorsJohannes Schindelin-12/+11
2024-02-29commit-reach(get_merge_bases_many_0): pass on "missing commits" errorsJohannes Schindelin-21/+36
2024-02-29commit-reach(merge_bases_many): pass on "missing commits" errorsJohannes Schindelin-13/+22
2024-02-29commit-reach(paint_down_to_common): start reporting errorsJohannes Schindelin-21/+45
2024-02-29commit-reach(paint_down_to_common): prepare for handling shallow commitsJohannes Schindelin-4/+12
2024-02-28commit-reach(repo_in_merge_bases_many): report missing commitsJohannes Schindelin-2/+6
2024-02-28commit-reach(repo_in_merge_bases_many): optionally expect missing commitsJohannes Schindelin-4/+5
2024-02-28commit-reach(paint_down_to_common): plug two memory leaksJohannes Schindelin-1/+4
2023-12-26treewide: remove unnecessary includes in source filesElijah Newren-1/+0
2023-10-03commit-reach: free temporary list in get_octopus_merge_bases()Jeff King-0/+1
2023-07-05git-compat-util: move alloc macros to git-compat-util.hCalvin Wan-1/+0
2023-06-20Merge branch 'mh/commit-reach-get-reachable-plug-leak'Junio C Hamano-0/+2
2023-06-04commit-reach: fix memory leak in get_reachable_subset()Mike Hommey-0/+2
2023-04-06Merge branch 'ab/remove-implicit-use-of-the-repository'Junio C Hamano-10/+11
2023-04-06Merge branch 'ds/ahead-behind'Junio C Hamano-0/+216
2023-03-28libs: use "struct repository *" argument, not "the_repository"Ævar Arnfjörð Bjarmason-1/+1
2023-03-28cocci: apply the "commit.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason-8/+8
2023-03-28cocci: apply the "commit-reach.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason-1/+2
2023-03-20commit-reach: add tips_reachable_from_bases()Derrick Stolee-0/+113
2023-03-20commit-reach: implement ahead_behind() logicDerrick Stolee-0/+103
2023-03-19Merge branch 'ew/commit-reach-clean-up-flags-fix'Junio C Hamano-2/+6
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren-0/+1
2023-02-23alloc.h: move ALLOC_GROW() functions from cache.hElijah Newren-1/+2
2023-02-11commit-reach: avoid NULL dereferenceEric Wong-2/+6
2023-01-09use DUP_ARRAYRené Scharfe-2/+1
2021-03-13use CALLOC_ARRAYRené Scharfe-3/+3
2021-02-22commit-reach: stale commits may prune generation furtherDerrick Stolee-7/+21
2021-02-22commit-reach: use heuristic in remove_redundant()Derrick Stolee-16/+56
2021-02-22commit-reach: move compare_commits_by_genDerrick Stolee-15/+15
2021-02-22commit-reach: use one walk in remove_redundant()Derrick Stolee-8/+96
2021-02-01commit-reach: reduce requirements for remove_redundant()Derrick Stolee-6/+4
2021-01-18commit-reach: use corrected commit dates in paint_down_to_common()Abhishek Kumar-1/+1
2021-01-18commit-graph: return 64-bit generation numberAbhishek Kumar-18/+18
2020-10-02commit-reach: fix in_merge_bases_many bugDerrick Stolee-4/+4
2020-07-06Merge branch 'cb/is-descendant-of'Junio C Hamano-10/+6