| 1586 | } |
| 1587 | |
| 1588 | int repo_get_oid_commit(struct repository *r, |
| 1589 | const char *name, |
| 1590 | struct object_id *oid) |
| 1591 | { |
| 1592 | return repo_get_oid_with_flags(r, name, oid, GET_OID_COMMIT); |
| 1593 | } |
| 1594 | |
| 1595 | int repo_get_oid_tree(struct repository *r, |
| 1596 | const char *name, |
no test coverage detected