//create a new commit
File junkFile2 = new File(git.getRepository().getWorkTree(), "junk2.txt");
FileUtils.writeStringToFile(junkFile2, "I am junk too");
git.add().addFilepattern(junkFile2.getName()).call();
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();