Package org.eclipse.jgit.iplog

Examples of org.eclipse.jgit.iplog.IpLogGenerator.scan()


    if (version == null && start instanceof RevTag)
      version = ((RevTag) start).getTagName();
    else if (version == null)
      throw die(MessageFormat.format(CLIText.get().notATagVersionIsRequired, start.name()));

    log.scan(db, rw.parseCommit(start), version);

    if (output != null) {
      if (!output.getParentFile().exists())
        output.getParentFile().mkdirs();
      LockFile lf = new LockFile(output, db.getFS());
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.