| 1082 | } |
| 1083 | |
| 1084 | void 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 | |
| 1094 | static struct tree *load_tree_for_commit(struct commit_graph *g, |
| 1095 | struct commit *c) |
no test coverage detected