commit: allow lookup_commit 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
f58a6cb602
commit
bacf16874e
10
commit.c
10
commit.c
@ -53,13 +53,13 @@ struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref
|
||||
return c;
|
||||
}
|
||||
|
||||
struct commit *lookup_commit_the_repository(const struct object_id *oid)
|
||||
struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
|
||||
{
|
||||
struct object *obj = lookup_object(the_repository, oid->hash);
|
||||
struct object *obj = lookup_object(r, oid->hash);
|
||||
if (!obj)
|
||||
return create_object(the_repository, oid->hash,
|
||||
alloc_commit_node(the_repository));
|
||||
return object_as_type(the_repository, obj, OBJ_COMMIT, 0);
|
||||
return create_object(r, oid->hash,
|
||||
alloc_commit_node(r));
|
||||
return object_as_type(r, obj, OBJ_COMMIT, 0);
|
||||
}
|
||||
|
||||
struct commit *lookup_commit_reference_by_name(const char *name)
|
||||
|
Reference in New Issue
Block a user