本文整理匯總了Java中org.eclipse.jgit.revwalk.RevCommit.getParents方法的典型用法代碼示例。如果您正苦於以下問題:Java RevCommit.getParents方法的具體用法?Java RevCommit.getParents怎麽用?Java RevCommit.getParents使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.jgit.revwalk.RevCommit
的用法示例。
在下文中一共展示了RevCommit.getParents方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: process
import org.eclipse.jgit.revwalk.RevCommit; //導入方法依賴的package包/類
private void process(String fullName, String branch, String folder, ProcessCommitFn processCommitFn) {
GitService gitService = new GitServiceImpl();
try (
Repository repository = gitService.cloneIfNotExists(folder, "https://github.com/" + fullName + ".git");
RevWalk walk = gitService.createAllRevsWalk(repository, branch);) {
DbRepository dbRepository = repositoryDao.findOneByFullName(fullName);
if (dbRepository == null) {
dbRepository = repositoryDao.save(new DbRepository(fullName));
}
for (RevCommit commit : walk) {
LocalDateTime ldt = LocalDateTime.ofEpochSecond(commit.getCommitTime(), 0, ZoneOffset.UTC);
int parentsCount = commit.getParents().length;
if (ldt.isAfter(LocalDateTime.of(2017, 1, 1, 0, 0)) && parentsCount == 1) {
String sha1 = commit.getId().getName();
DbCommit dbCommit = commitDao.findOneByRepositoryAndSha1(dbRepository, sha1);
if (dbCommit == null) {
dbCommit = commitDao.save(new DbCommit(dbRepository, sha1));
}
if (dbCommit.getAffectedFiles() == null) {
List<String> javaFiles = new ArrayList<>();
Map<String, String> renamed = new HashMap<>();
gitService.fileTreeDiff(repository, commit, javaFiles, javaFiles, renamed, false);
Set<String> distinctFiles = new HashSet<>(javaFiles);
dbCommit.setAffectedFiles(distinctFiles.size());
commitDao.save(dbCommit);
}
processCommitFn.processCommit(repository, commit, dbCommit);
}
}
gitService.checkout(repository, branch);
} catch (Exception e) {
e.printStackTrace(System.err);
}
}