diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-02-05 14:26:14 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-02-05 14:26:14 -0800 |
commit | e5eac5735609722a07401a279a1508ace22fc9bc (patch) | |
tree | 5bbd700bef44ae3f2d7ac3107b4ad542dd22fe6d /commit-graph.h | |
parent | 04d67b6ab222060546af328207ad48ae8ad58fe9 (diff) | |
parent | 49bbc57a5728880bcf2c4a02289508f7d923e32a (diff) | |
download | git-e5eac5735609722a07401a279a1508ace22fc9bc.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.h b/commit-graph.h index 813e7c19f1..096d8bac34 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); |