RevCommit commitTwo = git.commit().setMessage("committing junk 2 file").call();
//make sure develop has our commit
assertTrue(GitHelper.isMergedInto(git, commitTwo, flow.getDevelopBranchName()));
flow.releaseStart("1.0").setStartCommit(commitOne.getName()).call();
assertEquals(flow.getReleaseBranchPrefix() + "1.0", git.getRepository().getBranch());
//the release branch should have our commit
assertTrue(GitHelper.isMergedInto(git, commitOne, flow.getReleaseBranchPrefix() + "1.0"));