Package org.eclipse.jgit.junit.TestRepository

Examples of org.eclipse.jgit.junit.TestRepository.CommitBuilder.child()


    CommitBuilder cb = tr.commit();
    RevCommit tip;
    do {
      --depth;
      tip = cb.add("a", "" + depth).message("" + depth).create();
      cb = cb.child();
    } while (depth > 0);
    return tip;
  }

  protected long lastModified(AnyObjectId objectId) {
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.