diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-10-07 11:32:55 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-07 11:32:55 +0900 |
commit | cda8faa37e997f5db3458c1454ffe70f5c460d2a (patch) | |
tree | d042955b65bdf650910f69cee4b6c372becb9788 /builtin | |
parent | Merge branch 'ss/get-time-cleanup' (diff) | |
parent | commit-graph: turn off save_commit_buffer (diff) | |
download | tgif-cda8faa37e997f5db3458c1454ffe70f5c460d2a.tar.xz |
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 'builtin')
-rw-r--r-- | builtin/commit-graph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c index 57863619b7..052696f1af 100644 --- a/builtin/commit-graph.c +++ b/builtin/commit-graph.c @@ -251,6 +251,8 @@ int cmd_commit_graph(int argc, const char **argv, const char *prefix) builtin_commit_graph_usage, PARSE_OPT_STOP_AT_NON_OPTION); + save_commit_buffer = 0; + if (argc > 0) { if (!strcmp(argv[0], "read")) return graph_read(argc, argv); |