MCPcopy Create free account
hub / github.com/git/git / enumerate_cruft_objects

Function enumerate_cruft_objects

builtin/pack-objects.c:4241–4251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4239static void add_objects_in_unpacked_packs(void);
4240
4241static void enumerate_cruft_objects(void)
4242{
4243 if (progress)
4244 progress_state = start_progress(the_repository,
4245 _("Enumerating cruft objects"), 0);
4246
4247 add_objects_in_unpacked_packs();
4248 add_unreachable_loose_objects(NULL);
4249
4250 stop_progress(&progress_state);
4251}
4252
4253static void enumerate_and_traverse_cruft_objects(struct string_list *fresh_packs)
4254{

Callers 1

read_cruft_objectsFunction · 0.85

Calls 4

start_progressFunction · 0.85
stop_progressFunction · 0.85

Tested by

no test coverage detected