使用Jgit从远程git分支仅下载一个文件

时间:2019-02-28 16:55:57

标签: java git jgit

我正在尝试从远程git分支下载单个文件(myFile.xml),而不克隆所有存储库,我找到了这段代码,但是它确实在getCO中起作用,错误在RevCommit commit = revWalk中完全起作用。 parseCommit(lastCommitId);

public void getComponent() throws IOException
      {
        File repoDir = new File("https://**.git");
           // open the repository
           Repository repository = new FileRepository(repoDir);
           // find the HEAD
           ObjectId lastCommitId = repository.resolve("47100a898d1c76558e49d3f292b8e7a6d052fe51");
           System.out.println("lastcommit to string "+lastCommitId.toString());

           // now we have to get the commit
           RevWalk revWalk = new RevWalk(repository);
           RevCommit commit = revWalk.parseCommit(lastCommitId);
           // and using commit's tree find the path
           RevTree tree = commit.getTree();
           TreeWalk treeWalk = new TreeWalk(repository);
           treeWalk.addTree(tree);
           treeWalk.setRecursive(true);
           treeWalk.setFilter(PathFilter.create("abcd/myFile.xml"));
           if (!treeWalk.next()) {
               throw new IllegalStateException("Unable to download file.");
               }
           ObjectId objectId = treeWalk.getObjectId(0);
           ObjectLoader loader = repository.open(objectId);

           // and then one can use either
           InputStream in = loader.openStream();
           // or
           loader.copyTo(System.out);
  }  

Exception in thread "main" org.eclipse.jgit.errors.MissingObjectException: Missing unknown 47100a898d1c76558e49d3f292b8e7a6d052fe51
    at org.eclipse.jgit.internal.storage.file.WindowCursor.open(WindowCursor.java:168)
    at org.eclipse.jgit.lib.ObjectReader.open(ObjectReader.java:236)
    at org.eclipse.jgit.revwalk.RevWalk.parseAny(RevWalk.java:890)
    at org.eclipse.jgit.revwalk.RevWalk.parseCommit(RevWalk.java:800)
    at testGit.Authenticate.getComponent(Authenticate.java:138)
    at testGit.Authenticate.main(Authenticate.java:90)

1 个答案:

答案 0 :(得分:0)

Git协议不允许直接执行此操作,因此对远程存储库的访问受到设计的限制。 JGit的一种选择是仅通过InMemoryRepository在内存中克隆存储库,但这可能仅对较小的存储库有用,因为否则它可能会占用大量内存。

另请参见jgit-cookbook

中的完整代码段