aboutsummaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-01-21 16:16:28 -0800
committerJunio C Hamano <gitster@pobox.com>2026-01-21 16:16:28 -0800
commit214cbb7b1dc876c4d51442b59b7f850e47916fc5 (patch)
tree40d7354c6be39528ea02b1b8075ed243ded7087c /sequencer.c
parentc0b4d2097998292299749d79c8b3c51322927253 (diff)
parent4eb105c11970747e8b78bd0275ff9ae431d58d1d (diff)
downloadgit-214cbb7b1dc876c4d51442b59b7f850e47916fc5.tar.xz
Merge branch 'rs/tree-wo-the-repository'
Remove implicit reliance on the_repository global in the APIs around tree objects and make it explicit which repository to work in. * rs/tree-wo-the-repository: cocci: remove obsolete the_repository rules cocci: convert parse_tree functions to repo_ variants tree: stop using the_repository tree: use repo_parse_tree() path-walk: use repo_parse_tree_gently() pack-bitmap-write: use repo_parse_tree() delta-islands: use repo_parse_tree() bloom: use repo_parse_tree() add-interactive: use repo_parse_tree_indirect() tree: add repo_parse_tree*() environment: move access to core.maxTreeDepth into repo settings
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sequencer.c b/sequencer.c
index 5476d39ba9..1f492f8460 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -767,7 +767,7 @@ static int do_recursive_merge(struct repository *r,
o.buffer_output = 2;
o.show_rename_progress = 1;
- head_tree = parse_tree_indirect(head);
+ head_tree = repo_parse_tree_indirect(the_repository, head);
if (!head_tree)
return error(_("unable to read tree (%s)"), oid_to_hex(head));
next_tree = next ? repo_get_commit_tree(r, next) : empty_tree(r);
@@ -4044,7 +4044,7 @@ static int do_reset(struct repository *r,
goto cleanup;
}
- tree = parse_tree_indirect(&oid);
+ tree = repo_parse_tree_indirect(the_repository, &oid);
if (!tree)
return error(_("unable to read tree (%s)"), oid_to_hex(&oid));
prime_cache_tree(r, r->index, tree);