| 691 | } |
| 692 | |
| 693 | void reduce_heads_replace(struct commit_list **heads) |
| 694 | { |
| 695 | struct commit_list *result = reduce_heads(*heads); |
| 696 | commit_list_free(*heads); |
| 697 | *heads = result; |
| 698 | } |
| 699 | |
| 700 | int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid) |
| 701 | { |
no test coverage detected