Package org.eclipse.jgit.lib

Examples of org.eclipse.jgit.lib.TransferConfig


   * @param uri
   *            the URI used to access the remote repository. This must be the
   *            URI passed to {@link #open(Repository, URIish)}.
   */
  protected Transport(final Repository local, final URIish uri) {
    final TransferConfig tc = local.getConfig().get(TransferConfig.KEY);
    this.local = local;
    this.uri = uri;
    this.checkFetchedObjects = tc.isFsckObjects();
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.lib.TransferConfig

Copyright © 2018 www.massapicom. 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.