127128129130131132133134
GitFlowConfiguration gfConfig = new GitFlowConfiguration(gitRepo); return new JGitFlow(gitRepo, gfConfig); } catch (IOException e) { throw new JGitFlowIOException(e); } }
545556575859606162
RevCommit branchCommit = walk.parseCommit(branch); return isMergedInto(git, branchCommit, baseName); } catch (IOException e) { throw new JGitFlowIOException(e); } }
106107108109110111112113
{ throw new JGitFlowGitAPIException(e); } catch (IOException e) { throw new JGitFlowIOException(e); } }
130131132133134135136137138139140
return walk.parseCommit(branch); } catch (IOException e) { throw new JGitFlowIOException(e); } finally { if (null != walk) {
250251252253254255256257
return remote; } catch (IOException e) { throw new JGitFlowIOException(e); } }
276277278279280281282283
return local; } catch (IOException e) { throw new JGitFlowIOException(e); } }
351352353354355356357358
7475767778798081
{ config.save(); } catch (IOException e) { throw new JGitFlowIOException(e); } }
93949596979899100
190191192193194195196197198199
{ config.save(); } catch (IOException e) { throw new JGitFlowIOException(e); } } }