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

问题描述 投票:0回答:1

我试图从远程git分支下载单个文件(myFile.xml)而不克隆所有的存储库,我发现这个代码但是它会在getCO中发生错误;在RevCommit中的ponent函数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)
java git jgit
1个回答
0
投票

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

另请参阅jgit-cookbook中的完整代码段

© www.soinside.com 2019 - 2024. All rights reserved.