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

Function odb_freshen_object

odb.c:826–835  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

824}
825
826int odb_freshen_object(struct object_database *odb,
827 const struct object_id *oid)
828{
829 struct odb_source *source;
830 odb_prepare_alternates(odb);
831 for (source = odb->sources; source; source = source->next)
832 if (odb_source_freshen_object(source, oid))
833 return 1;
834 return 0;
835}
836
837int odb_for_each_object_ext(struct object_database *odb,
838 const struct object_info *request,

Callers 2

Calls 2

odb_prepare_alternatesFunction · 0.85

Tested by

no test coverage detected