Examples of packRefs()


Examples of org.eclipse.jgit.internal.storage.file.GC.packRefs()

   */
  public static void packRefs(Repository repo, ProgressMonitor monitor) throws IOException {
    if (repo != null && repo instanceof FileRepository) {
      GC gc = new GC(((FileRepository) repo));
      gc.setProgressMonitor(monitor);
      gc.packRefs();
    }
  }

}
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.