diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-03-13 13:35:25 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-03-13 13:35:25 -0700 |
| commit | 2ee13a780b1464039b89b9987b1cdd74d9e40780 (patch) | |
| tree | 614cf75d25abc4a7ea08e50b211a8f5365032b8b /builtin | |
| parent | 7d4bebfe93b5ef0eb81b8a7b0f6edf365104ed01 (diff) | |
| parent | f74bbc8dd2637498bc07132ae6bfa6d1b88dafb0 (diff) | |
| download | git-2ee13a780b1464039b89b9987b1cdd74d9e40780.tar.gz | |
Merge branch 'jk/cached-commit-buffer' into HEAD
* jk/cached-commit-buffer:
revision: drop --show-all option
commit: drop uses of get_cached_commit_buffer()
Git 2.16.2
Diffstat (limited to 'builtin')
| -rw-r--r-- | builtin/rev-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rev-list.c b/builtin/rev-list.c index 48300d9e11..d320b6f1e3 100644 --- a/builtin/rev-list.c +++ b/builtin/rev-list.c @@ -134,7 +134,7 @@ static void show_commit(struct commit *commit, void *data) else putchar('\n'); - if (revs->verbose_header && get_cached_commit_buffer(commit, NULL)) { + if (revs->verbose_header) { struct strbuf buf = STRBUF_INIT; struct pretty_print_context ctx = {0}; ctx.abbrev = revs->abbrev; |
