1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-09 07:56:11 +02:00

commit.c: allow lookup_commit_reference to handle arbitrary repositories

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Stefan Beller 2018-06-28 18:22:22 -07:00 committed by Junio C Hamano
parent d9a05e74ec
commit 1f6c72fe55
2 changed files with 4 additions and 5 deletions

View File

@ -36,9 +36,9 @@ struct commit *lookup_commit_reference_gently(struct repository *r,
return object_as_type(r, obj, OBJ_COMMIT, quiet); return object_as_type(r, obj, OBJ_COMMIT, quiet);
} }
struct commit *lookup_commit_reference_the_repository(const struct object_id *oid) struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
{ {
return lookup_commit_reference_gently(the_repository, oid, 0); return lookup_commit_reference_gently(r, oid, 0);
} }
struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name) struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)

View File

@ -64,9 +64,8 @@ void add_name_decoration(enum decoration_type type, const char *name, struct obj
const struct name_decoration *get_name_decoration(const struct object *obj); const struct name_decoration *get_name_decoration(const struct object *obj);
struct commit *lookup_commit(struct repository *r, const struct object_id *oid); struct commit *lookup_commit(struct repository *r, const struct object_id *oid);
#define lookup_commit_reference(r, o) \ struct commit *lookup_commit_reference(struct repository *r,
lookup_commit_reference_##r(o) const struct object_id *oid);
struct commit *lookup_commit_reference_the_repository(const struct object_id *oid);
struct commit *lookup_commit_reference_gently(struct repository *r, struct commit *lookup_commit_reference_gently(struct repository *r,
const struct object_id *oid, const struct object_id *oid,
int quiet); int quiet);