Package org.tmatesoft.hg.core

Examples of org.tmatesoft.hg.core.HgLogCommand.limit()


    for (String b : cmdLineOpts.getList("-b", "--branches")) {
      cmd.branch(b);
    }
    int limit = cmdLineOpts.getSingleInt(-1, "-l", "--limit");
    if (limit != -1) {
      cmd.limit(limit);
    }
    cmd.set(noCancel).set(noProgress);
    List<String> files = cmdLineOpts.getList("");
    final long start = System.currentTimeMillis();
    if (files.isEmpty()) {
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.