GitApi.java 227 B

123456789
  1. package cn.seecoder.paas.service.facade.git;
  2. import org.eclipse.jgit.api.Git;
  3. import org.eclipse.jgit.api.errors.GitAPIException;
  4. public interface GitApi {
  5. Git clone(String repoUrl, String directory) throws Exception;
  6. }