THe advanced merge was eating any JIRA ID's stuck in brackets
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/15da15cc Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/15da15cc Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/15da15cc Branch: refs/heads/2.7.x-fixes Commit: 15da15cca2c5ad687d6bfb0694f289b89a264903 Parents: b8ae2e3 Author: Daniel Kulp <[email protected]> Authored: Fri Mar 21 20:46:37 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Mar 21 20:49:05 2014 -0400 ---------------------------------------------------------------------- bin/DoMerges.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/15da15cc/bin/DoMerges.java ---------------------------------------------------------------------- diff --git a/bin/DoMerges.java b/bin/DoMerges.java index 4bb6d7c..17e5f97 100644 --- a/bin/DoMerges.java +++ b/bin/DoMerges.java @@ -299,7 +299,7 @@ public class DoMerges { } } private static void doMappedMerge(String ver) throws Exception { - Process p = Runtime.getRuntime().exec(getCommandLine(new String[] {"git", "format-patch", "--stdout", "-1", ver})); + Process p = Runtime.getRuntime().exec(getCommandLine(new String[] {"git", "format-patch", "--stdout", "-1", "-k", ver})); BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream())); File outputFile = File.createTempFile("merge", ".patch"); @@ -331,7 +331,7 @@ public class DoMerges { writer.flush(); writer.close(); - p = Runtime.getRuntime().exec(getCommandLine(new String[] {"git", "am", outputFile.getCanonicalPath()})); + p = Runtime.getRuntime().exec(getCommandLine(new String[] {"git", "am", "-k", outputFile.getCanonicalPath()})); if (waitFor(p, false) != 0) { p = Runtime.getRuntime().exec(getCommandLine(new String[] {"git", "status"}));
