Package org.tmatesoft.hg.core

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


    dump.verbose(cmdLineOpts.getBoolean("-v", "--verbose"));
    final boolean reverseOrder = !cmdLineOpts.getBoolean("--hg4j-order-direct");
    dump.reversed(reverseOrder);
    HgLogCommand cmd = new HgLogCommand(hgRepo);
    for (String u : cmdLineOpts.getList("-u", "--user")) {
      cmd.user(u);
    }
    for (String b : cmdLineOpts.getList("-b", "--branches")) {
      cmd.branch(b);
    }
    int limit = cmdLineOpts.getSingleInt(-1, "-l", "--limit");
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.