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

Function load_commit_graph_info

commit-graph.c:1084–1092  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1082}
1083
1084void load_commit_graph_info(struct repository *r, struct commit *item)
1085{
1086 struct commit_graph *g;
1087 uint32_t pos;
1088
1089 g = repo_find_commit_pos_in_graph(r, item, &pos);
1090 if (g)
1091 fill_commit_graph_info(item, g, pos);
1092}
1093
1094static struct tree *load_tree_for_commit(struct commit_graph *g,
1095 struct commit *c)

Callers 2

contains_tag_algoFunction · 0.85
parse_commit_bufferFunction · 0.85

Calls 2

fill_commit_graph_infoFunction · 0.85

Tested by

no test coverage detected