| 1103 | } |
| 1104 | |
| 1105 | static struct ref *alloc_delete_ref(void) |
| 1106 | { |
| 1107 | struct ref *ref = alloc_ref("(delete)"); |
| 1108 | oidclr(&ref->new_oid, the_repository->hash_algo); |
| 1109 | return ref; |
| 1110 | } |
| 1111 | |
| 1112 | static int try_explicit_object_name(const char *name, |
| 1113 | struct ref **match) |
no test coverage detected