summaryrefslogtreecommitdiff
path: root/commit-graph.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:14 (GMT)
commite5eac5735609722a07401a279a1508ace22fc9bc (patch)
tree5bbd700bef44ae3f2d7ac3107b4ad542dd22fe6d /commit-graph.h
parent04d67b6ab222060546af328207ad48ae8ad58fe9 (diff)
parent49bbc57a5728880bcf2c4a02289508f7d923e32a (diff)
downloadgit-e5eac5735609722a07401a279a1508ace22fc9bc.zip
git-e5eac5735609722a07401a279a1508ace22fc9bc.tar.gz
git-e5eac5735609722a07401a279a1508ace22fc9bc.tar.bz2
Merge branch 'ab/commit-graph-write-progress'
The codepath to show progress meter while writing out commit-graph file has been improved. * ab/commit-graph-write-progress: commit-graph write: emit a percentage for all progress commit-graph write: add itermediate progress commit-graph write: remove empty line for readability commit-graph write: add more descriptive progress output commit-graph write: show progress for object search commit-graph write: more descriptive "writing out" output commit-graph write: add "Writing out" progress output commit-graph: don't call write_graph_chunk_extra_edges() unnecessarily commit-graph: rename "large edges" to "extra edges"
Diffstat (limited to 'commit-graph.h')
-rw-r--r--commit-graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.h b/commit-graph.h
index 813e7c1..096d8ba 100644
--- a/commit-graph.h
+++ b/commit-graph.h
@@ -49,7 +49,7 @@ struct commit_graph {
const uint32_t *chunk_oid_fanout;
const unsigned char *chunk_oid_lookup;
const unsigned char *chunk_commit_data;
- const unsigned char *chunk_large_edges;
+ const unsigned char *chunk_extra_edges;
};
struct commit_graph *load_commit_graph_one(const char *graph_file);