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:

committed by
Junio C Hamano

parent
d9a05e74ec
commit
1f6c72fe55
5
commit.h
5
commit.h
@ -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);
|
||||
|
||||
struct commit *lookup_commit(struct repository *r, const struct object_id *oid);
|
||||
#define lookup_commit_reference(r, o) \
|
||||
lookup_commit_reference_##r(o)
|
||||
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);
|
||||
struct commit *lookup_commit_reference_gently(struct repository *r,
|
||||
const struct object_id *oid,
|
||||
int quiet);
|
||||
|
Reference in New Issue
Block a user