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

Function mark_uninteresting

revision.c:3684–3692  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3682}
3683
3684static int mark_uninteresting(const struct object_id *oid,
3685 struct object_info *oi UNUSED,
3686 void *cb)
3687{
3688 struct rev_info *revs = cb;
3689 struct object *o = lookup_unknown_object(revs->repo, oid);
3690 o->flags |= UNINTERESTING | SEEN;
3691 return 0;
3692}
3693
3694define_commit_slab(indegree_slab, int);
3695define_commit_slab(author_date_slab, timestamp_t);

Callers

nothing calls this directly

Calls 1

lookup_unknown_objectFunction · 0.85

Tested by

no test coverage detected