Use recursive merge by default
If two commits that are merged have more than one common predecessor the recursive merge is superior. In this situation the normal non-recursive merge may even result in broken files without notice. This is why the recursive merge should be enabled by default. Change-Id: I4c5b8b2c6d406ec925da05838696c5c57f2348ef Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:

committed by
Edwin Kempin

parent
71831d2707
commit
7853c5b94a
@@ -86,7 +86,7 @@ public class MergeUtil {
|
||||
Constants.R_HEADS + Constants.MASTER;
|
||||
|
||||
public static boolean useRecursiveMerge(Config cfg) {
|
||||
return cfg.getBoolean("core", null, "useRecursiveMerge", false);
|
||||
return cfg.getBoolean("core", null, "useRecursiveMerge", true);
|
||||
}
|
||||
|
||||
public static interface Factory {
|
||||
|
Reference in New Issue
Block a user