MavenJGitFlowConfiguration config = configManager.getConfiguration(flow.git());
String hotfixLabel = getReleaseLabel(ctx, reactorProjects);
//We need to commit the hotfix versioned poms to develop to avoid a merge conflict
flow.git().checkout().setName(flow.getDevelopBranchName()).call();
updatePomsWithReleaseVersion(ctx, reactorProjects);
flow.git().add().addFilepattern(".").call();
flow.git().commit().setMessage("updating develop with hotfix versions to avoid merge conflicts").call();
flow.git().checkout().setName(flow.getHotfixBranchPrefix() + hotfixLabel);