]> git.ipfire.org Git - thirdparty/git.git/commit
diff: correct warning message when renameLimit exceeded
authorElijah Newren <newren@gmail.com>
Thu, 15 Jul 2021 00:45:21 +0000 (00:45 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 15 Jul 2021 23:54:24 +0000 (16:54 -0700)
commit05d2c61c6744212cdef6085832a84b49da77591c
treefad96c2b7995af33cf092e77ad8a4252ec96f3a5
parentd486ca60a51c9cb1fe068803c3f540724e95e83a
diff: correct warning message when renameLimit exceeded

The warning when quadratic rename detection was skipped referred to
"inexact rename detection".  For years, the only linear portion of
rename detection was looking for exact renames, so "inexact rename
detection" was an accurate way to refer to the quadratic portion of
rename detection.  However, that changed with commit bd24aa2f97a0
(diffcore-rename: guide inexact rename detection based on basenames,
2021-02-14).  Let's instead use the term "exhaustive rename detection"
to refer to the quadratic portion.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c