Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-09-29 19:04:15 +0300
committerJunio C Hamano <gitster@pobox.com>2023-09-29 19:04:15 +0300
commit5cd3f68add3cf24c322f925a5ca05a278bc6c027 (patch)
tree2aeb289c520081aa9e8873808990f366fa468a5e /range-diff.c
parent0b493d2986ab2664a35a87db04154c795f74d3fd (diff)
parent2e0d30d928dbb8899ebae749ceeb257e634d57f7 (diff)
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.c2
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)