summaryrefslogtreecommitdiff
path: root/commit-graph.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-10-07 11:32:55 +0900
committerJunio C Hamano <gitster@pobox.com>2019-10-07 11:32:55 +0900
commitcda8faa37e997f5db3458c1454ffe70f5c460d2a (patch)
treed042955b65bdf650910f69cee4b6c372becb9788 /commit-graph.c
parent36d2fca82bfad5aac326e624b72445eefeac11a3 (diff)
parentdd2e50a84ea431a6cec69f37251f29bf3cfcbb68 (diff)
downloadgit-cda8faa37e997f5db3458c1454ffe70f5c460d2a.tar.gz
Merge branch 'jk/commit-graph-cleanup'
A pair of small fixups to "git commit-graph" have been applied. * jk/commit-graph-cleanup: commit-graph: turn off save_commit_buffer commit-graph: don't show progress percentages while expanding reachable commits
Diffstat (limited to 'commit-graph.c')
-rw-r--r--commit-graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.c b/commit-graph.c
index 9b02d2c426..5da0e16d12 100644
--- a/commit-graph.c
+++ b/commit-graph.c
@@ -1050,7 +1050,7 @@ static void close_reachable(struct write_commit_graph_context *ctx)
if (ctx->report_progress)
ctx->progress = start_delayed_progress(
_("Expanding reachable commits in commit graph"),
- ctx->oids.nr);
+ 0);
for (i = 0; i < ctx->oids.nr; i++) {
display_progress(ctx->progress, i + 1);
commit = lookup_commit(ctx->r, &ctx->oids.list[i]);