diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-09-29 18:04:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-09-29 18:04:15 +0200 |
commit | 5cd3f68add3cf24c322f925a5ca05a278bc6c027 (patch) | |
tree | 2aeb289c520081aa9e8873808990f366fa468a5e /range-diff.c | |
parent | Merge branch 'ds/stat-name-width-configuration' (diff) | |
parent | range-diff: treat notes like `log` (diff) | |
download | git-5cd3f68add3cf24c322f925a5ca05a278bc6c027.tar.xz git-5cd3f68add3cf24c322f925a5ca05a278bc6c027.zip |
Merge branch 'kh/range-diff-notes'
"git range-diff --notes=foo" compared "log --notes=foo --notes" of
the two ranges, instead of using just the specified notes tree.
* kh/range-diff-notes:
range-diff: treat notes like `log`
Diffstat (limited to 'range-diff.c')
-rw-r--r-- | range-diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/range-diff.c b/range-diff.c index ca5493984a..c45b6d849c 100644 --- a/range-diff.c +++ b/range-diff.c @@ -60,7 +60,7 @@ static int read_patches(const char *range, struct string_list *list, "--output-indicator-context=#", "--no-abbrev-commit", "--pretty=medium", - "--notes", + "--show-notes-by-default", NULL); strvec_push(&cp.args, range); if (other_arg) |