| 4389 | } |
| 4390 | |
| 4391 | static void show_commit(struct commit *commit, void *data UNUSED) |
| 4392 | { |
| 4393 | add_object_entry(&commit->object.oid, OBJ_COMMIT, NULL, 0); |
| 4394 | |
| 4395 | if (write_bitmap_index) |
| 4396 | index_commit_for_bitmap(commit); |
| 4397 | |
| 4398 | if (use_delta_islands) |
| 4399 | propagate_island_marks(the_repository, commit); |
| 4400 | } |
| 4401 | |
| 4402 | static void show_object(struct object *obj, const char *name, |
| 4403 | void *data UNUSED) |
nothing calls this directly
no test coverage detected