MCPcopy Index your code
hub / github.com/git/git / process_blob

Function process_blob

http-push.c:1290–1302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1288}
1289
1290static struct object_list **process_blob(struct blob *blob,
1291 struct object_list **p)
1292{
1293 struct object *obj = &blob->object;
1294
1295 obj->flags |= LOCAL;
1296
1297 if (obj->flags & (UNINTERESTING | SEEN))
1298 return p;
1299
1300 obj->flags |= SEEN;
1301 return add_one_object(obj, p);
1302}
1303
1304static struct object_list **process_tree(struct tree *tree,
1305 struct object_list **p)

Callers 2

process_treeFunction · 0.70
get_deltaFunction · 0.70

Calls 1

add_one_objectFunction · 0.70

Tested by

no test coverage detected