如何使用JGIT从git存储库克隆单个文件

时间:2018-05-15 15:25:37

标签: java jgit

我使用下面的代码来克隆我的存储库,它工作正常。

  public static void getCodeBase() throws Exception 
     {
        String url="https://urltogitrepository";
        String destination = ".//clone3//";   
        Git.cloneRepository().setURI(url)
              .setDirectory(Paths.get(destination).toFile()).call();
        System.out.println("Cloned successfully....");

     }

但我只想从git存储库下载单个java文件,而不是克隆整个repo。但不知道我该怎么做。

1 个答案:

答案 0 :(得分:0)

下面的代码对我来说很好:

Git repo = Git.cloneRepository()
          .setURI(url)
          .setDirectory(destination))
          .setBranchesToClone(Arrays.asList("refs/heads/master"))
          .setCloneAllBranches(false)
          .setCloneSubmodules(true)
          .setNoCheckout(true)
          .call();

         repo.checkout().setStartPoint("origin/master").addPath("file1.txt").call();