diff options
author | Stefan Beller <sbeller@google.com> | 2018-06-28 18:22:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-29 10:43:40 -0700 |
commit | d9a05e74ec01bb59fccb70c005269d930cd60d9a (patch) | |
tree | 6b099c73c66d684898d04b1a627d8bde60140b30 /commit.h | |
parent | 286d258d4f8b6f67676b1c50c2fd07a577450518 (diff) | |
download | git-d9a05e74ec01bb59fccb70c005269d930cd60d9a.tar.gz |
commit.c: allow lookup_commit_reference_gently to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -67,9 +67,7 @@ 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); -#define lookup_commit_reference_gently(r, o, q) \ - lookup_commit_reference_gently_##r(o, q) -struct commit *lookup_commit_reference_gently_the_repository( +struct commit *lookup_commit_reference_gently(struct repository *r, const struct object_id *oid, int quiet); struct commit *lookup_commit_reference_by_name(const char *name); |