Examples of modified()


Examples of org.tmatesoft.hg.core.HgStatusCommand.modified()

    HgStatusCommand cmd = hgRepo.createStatusCommand();
    if (cmdLineOpts.getBoolean("-A", "--all")) {
      cmd.all();
    } else {
      // default: mardu
      cmd.modified(cmdLineOpts.getBoolean(true, "-m", "--modified"));
      cmd.added(cmdLineOpts.getBoolean(true, "-a", "--added"));
      cmd.removed(cmdLineOpts.getBoolean(true, "-r", "--removed"));
      cmd.deleted(cmdLineOpts.getBoolean(true, "-d", "--deleted"));
      cmd.unknown(cmdLineOpts.getBoolean(true, "-u", "--unknonwn"));
      cmd.clean(cmdLineOpts.getBoolean("-c", "--clean"));
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.