3

我想在 GIT 中执行稀疏检出,即从存储库中检出一部分工作副本。如何通过 Java 代码执行此操作。请建议。

4

2 回答 2

2

基于@rüdiger-herrmann 的回答

String url = "https://github.com/renaud/solr_noLenghNormSimilarity";
String hash = "802558f58add3a1f5b33f04254194bd7cd59b27f";
String subPath = "src/org";
String dest = "myclone";

File localPath = new File(dest);

Git gitRepo = Git.cloneRepository().setURI(url).setDirectory(localPath).setNoCheckout(true).call();
gitRepo.checkout().setStartPoint(hash).addPath(subPath).call();
gitRepo.getRepository().close();
于 2015-04-21T16:20:01.860 回答
1

目前 JGit 库(从 3.0.0 开始)不支持稀疏检出。

于 2013-10-15T09:10:41.180 回答