Package edu.nyu.cs.javagit.api.commands.GitLogResponse

Examples of edu.nyu.cs.javagit.api.commands.GitLogResponse.Commit


            GitImporterException {
        LOGGER.debug("******Extracting history for tag/release " + tag + "******");
        // Creating the release
        List<Commit> commits = fDotGit.getLog(options);
        if (!commits.isEmpty()) {
            Commit lastCommit = commits.get(commits.size() - 1);
            fMapper.createRelease(tag, lastCommit.getDateString());
            // Iterating over the commits in reverse order, from the oldest to the newest.
            for (Commit commit : commits) {
                LOGGER.debug("extracting data for commit " + commit.getSha());
                if (commit.getFiles() != null) {
                    if (fFetchSrc) {
View Full Code Here

TOP

Related Classes of edu.nyu.cs.javagit.api.commands.GitLogResponse.Commit

Copyright © 2018 www.massapicom. 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.