| 99 | struct commit *item, |
| 100 | int quiet_on_missing); |
| 101 | static inline int repo_parse_commit(struct repository *r, struct commit *item) |
| 102 | { |
| 103 | return repo_parse_commit_gently(r, item, 0); |
| 104 | } |
| 105 | |
| 106 | void unparse_commit(struct repository *r, const struct object_id *oid); |
| 107 |