File junkFile = new File(remoteGit.getRepository().getWorkTree(), "junk.txt");
FileUtils.writeStringToFile(junkFile, "I am junk");
remoteGit.add().addFilepattern(junkFile.getName()).call();
remoteGit.commit().setMessage("adding junk file").call();
flow.featureStart("my-feature").setFetchDevelop(true).call();
}
@Test(expected = JGitFlowException.class)
public void startFeatureWithFetchNoRemote() throws Exception