Bump diff.renameLimit

After a successful clone, we set the configuration
knob 'diff.renameList' to 7000. This change is made
after observing a warning about the value being too
low.
This commit is contained in:
0x1eef 2024-06-30 02:59:02 -03:00
parent b02c61fd8c
commit d3c3e3e2f0

View file

@ -45,6 +45,7 @@ set -x
gitexec "clone ${giturl} ${gitdir}" gitexec "clone ${giturl} ${gitdir}"
cd "${gitdir}" cd "${gitdir}"
gitexec "config core.filemode off" gitexec "config core.filemode off"
gitexec "config diff.renameList 7000"
set +x set +x
set +e set +e
gitexec "checkout -t origin/${branch} > /dev/null 2>&1" gitexec "checkout -t origin/${branch} > /dev/null 2>&1"