change mergeStrategy order

This commit is contained in:
Eduard Heimbuch
2019-11-06 09:54:17 +01:00
parent 7e00d22e9e
commit b4f1e8874a
2 changed files with 4 additions and 4 deletions

View File

@@ -34,9 +34,9 @@ public class GitMergeCommand extends AbstractGitCommand implements MergeCommand
private final GitWorkdirFactory workdirFactory;
private static final Set<MergeStrategy> STRATEGIES = ImmutableSet.of(
MergeStrategy.SQUASH,
MergeStrategy.MERGE_COMMIT,
MergeStrategy.FAST_FORWARD_IF_POSSIBLE
MergeStrategy.FAST_FORWARD_IF_POSSIBLE,
MergeStrategy.SQUASH
);
GitMergeCommand(GitContext context, sonia.scm.repository.Repository repository, GitWorkdirFactory workdirFactory) {