Package org.tmatesoft.hg.core

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


    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");
    if (limit != -1) {
      cmd.limit(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.