| 74 | } |
| 75 | |
| 76 | struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid) |
| 77 | { |
| 78 | return lookup_commit_reference_gently(r, oid, 0); |
| 79 | } |
| 80 | |
| 81 | struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name) |
| 82 | { |
no test coverage detected