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
4
commit.c
4
commit.c
@ -36,9 +36,9 @@ struct commit *lookup_commit_reference_gently(struct repository *r,
|
||||
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)
|
||||
|
Reference in New Issue
Block a user