Merge "Use recursive merge by default"

This commit is contained in:
Edwin Kempin
2014-07-16 05:23:19 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -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 {