Examples of gitRepo()


Examples of org.uberfire.java.nio.fs.jgit.JGitFileSystem.gitRepo()

            if (startCommitDate != null && startCommitDate.after(commitDate)) {
                break;
            }

            List<String> files = getFilesInCommit(fs.gitRepo().getRepository(), JGitUtil.resolveObjectId(fs.gitRepo(), commit.id()));
            CommitInfo commitInfo = new CommitInfo(commit.id(), shortMessage, commit.author(), commitDate, files);
            commits.add(commitInfo);
            logger.debug("Found commit {}", commitInfo);

        }
View Full Code Here

Examples of org.uberfire.java.nio.fs.jgit.JGitFileSystem.gitRepo()

            if (startCommitDate != null && startCommitDate.after(commitDate)) {
                break;
            }

            List<String> files = getFilesInCommit(fs.gitRepo().getRepository(), JGitUtil.resolveObjectId(fs.gitRepo(), commit.id()));
            CommitInfo commitInfo = new CommitInfo(commit.id(), shortMessage, commit.author(), commitDate, files);
            commits.add(commitInfo);
            logger.debug("Found commit {}", commitInfo);

        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.