Use the same default diff.renameLimit = 400 like native git

Bug: 434085
Change-Id: I43a0401049cd85b2c7a2162ccc071af7fffdfed3
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2018-09-06 11:40:59 +02:00
parent 582d623964
commit a253c39729
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ private DiffConfig(Config rc) {
renameDetectionType = parseRenameDetectionType(rc.getString(
ConfigConstants.CONFIG_DIFF_SECTION, null, ConfigConstants.CONFIG_KEY_RENAMES));
renameLimit = rc.getInt(ConfigConstants.CONFIG_DIFF_SECTION,
ConfigConstants.CONFIG_KEY_RENAMELIMIT, 200);
ConfigConstants.CONFIG_KEY_RENAMELIMIT, 400);
}
/**