diff: report dirty submodules as changes in builtin_diff()rs/diff-exit-code-fix
commit11591850ddd5e65d3d0aab22c0a7131b1eb1d6f0
authorRené Scharfe <l.s.r@web.de>
Sun, 8 Sep 2024 07:08:35 +0000 (8 09:08 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 8 Sep 2024 20:21:24 +0000 (8 13:21 -0700)
treea9b98a9ab59d84d3f2ca53c5e3e1fa223a1bd2eb
parent87cf96094a6b5ccc4a9a1d92b9958ad0869a5c90
diff: report dirty submodules as changes in builtin_diff()

The diff machinery has two ways to detect changes to set the exit code:
Just comparing hashes and comparing blob contents.  The latter is needed
if certain changes have to be ignored, e.g. with --ignore-space-change
or --ignore-matching-lines.  It's enabled by the diff_options flag
diff_from_contents.

The slower mode as never considered submodules (and subrepos) as changes
with --submodule=diff or --submodule=log, which is inconsistent with
--submodule=short (the default).  Fix it.

d7b97b7185 (diff: let external diffs report that changes are
uninteresting, 2024-06-09) set diff_from_contents if external diff
programs are allowed.  This is the default e.g. for git diff, and so
that change exposed the inconsistency much more widely.

Reported-by: David Hull <david.hull@friendbuy.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c
t/t4017-diff-retval.sh