4 #include "git-compat-util.h"
6 char *get_commit_graph_filename(const char *obj_dir
);
9 * Given a commit struct, try to fill the commit struct info, including:
14 * Returns 1 if and only if the commit was found in the packed graph.
16 * See parse_commit_buffer() for the fallback after this call.
18 int parse_commit_in_graph(struct commit
*item
);
20 struct tree
*get_commit_tree_in_graph(const struct commit
*c
);
25 const unsigned char *data
;
28 unsigned char hash_len
;
29 unsigned char num_chunks
;
33 const uint32_t *chunk_oid_fanout
;
34 const unsigned char *chunk_oid_lookup
;
35 const unsigned char *chunk_commit_data
;
36 const unsigned char *chunk_large_edges
;
39 struct commit_graph
*load_commit_graph_one(const char *graph_file
);
41 void write_commit_graph(const char *obj_dir
,
42 const char **pack_indexes
,
44 const char **commit_hex
,