Merge branch 'ab/remove-implicit-use-of-the-repository' into en/header-split-cache-h
* ab/remove-implicit-use-of-the-repository: libs: use "struct repository *" argument, not "the_repository" post-cocci: adjust comments for recent repo_* migration cocci: apply the "revision.h" part of "the_repository.pending" cocci: apply the "rerere.h" part of "the_repository.pending" cocci: apply the "refs.h" part of "the_repository.pending" cocci: apply the "promisor-remote.h" part of "the_repository.pending" cocci: apply the "packfile.h" part of "the_repository.pending" cocci: apply the "pretty.h" part of "the_repository.pending" cocci: apply the "object-store.h" part of "the_repository.pending" cocci: apply the "diff.h" part of "the_repository.pending" cocci: apply the "commit.h" part of "the_repository.pending" cocci: apply the "commit-reach.h" part of "the_repository.pending" cocci: apply the "cache.h" part of "the_repository.pending" cocci: add missing "the_repository" macros to "pending" cocci: sort "the_repository" rules by header cocci: fix incorrect & verbose "the_repository" rules cocci: remove dead rule from "the_repository.pending.cocci"
This commit is contained in:
@ -230,7 +230,7 @@ static int show_tree_default(const struct object_id *oid, struct strbuf *base,
|
||||
return early;
|
||||
|
||||
printf("%06o %s %s\t", mode, type_name(object_type(mode)),
|
||||
find_unique_abbrev(oid, options->abbrev));
|
||||
repo_find_unique_abbrev(the_repository, oid, options->abbrev));
|
||||
show_tree_common_default_long(options, base, pathname, base->len);
|
||||
return recurse;
|
||||
}
|
||||
@ -261,7 +261,8 @@ static int show_tree_long(const struct object_id *oid, struct strbuf *base,
|
||||
}
|
||||
|
||||
printf("%06o %s %s %7s\t", mode, type_name(type),
|
||||
find_unique_abbrev(oid, options->abbrev), size_text);
|
||||
repo_find_unique_abbrev(the_repository, oid, options->abbrev),
|
||||
size_text);
|
||||
show_tree_common_default_long(options, base, pathname, base->len);
|
||||
return recurse;
|
||||
}
|
||||
@ -312,7 +313,7 @@ static int show_tree_object(const struct object_id *oid, struct strbuf *base,
|
||||
if (early >= 0)
|
||||
return early;
|
||||
|
||||
str = find_unique_abbrev(oid, options->abbrev);
|
||||
str = repo_find_unique_abbrev(the_repository, oid, options->abbrev);
|
||||
if (options->null_termination) {
|
||||
fputs(str, stdout);
|
||||
fputc('\0', stdout);
|
||||
@ -435,7 +436,7 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
||||
ls_tree_usage, ls_tree_options);
|
||||
if (argc < 1)
|
||||
usage_with_options(ls_tree_usage, ls_tree_options);
|
||||
if (get_oid(argv[0], &oid))
|
||||
if (repo_get_oid(the_repository, argv[0], &oid))
|
||||
die("Not a valid object name %s", argv[0]);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user