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

Examples of edu.nyu.cs.javagit.api.commands.GitLogOptions


        } catch (IOException e) {
            throw new GitImporterException("Problems encountered while fetching all the git tags", e);
        }
        // For each tag/release I extract its history
        for (String tag : tags) {
            GitLogOptions options = new GitLogOptions();
            options.setOptSpecificTag(true, tag);
            options.setOptFileDetails(true);
            options.setOptOrderingReverse(true);
            options.setOptLimitNoMerges(true); // Don't care about merges for now
            options.setOptFileChangeType(true);
            try {
                fMonitor.subTask("Extracting history for tag " + tag);
                handleRelease(options, tag);
                fMonitor.worked(1);
            } catch (JavaGitException e) {
View Full Code Here

TOP

Related Classes of edu.nyu.cs.javagit.api.commands.GitLogOptions

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.