assertEquals(flow.getDevelopBranchName(), git.getRepository().getBranch());
FileUtils.writeStringToFile(versionFile, "develop");
git.add().addFilepattern(".").call();
git.commit().setMessage("commiting develop").call();
flow.hotfixStart(hfTwoLabel).call();
assertEquals(flow.getHotfixBranchPrefix() + hfTwoLabel, git.getRepository().getBranch());
FileUtils.writeStringToFile(versionFile, hfTwoLabel);
git.add().addFilepattern(".").call();