Package org.eclipse.egit.core.op

Examples of org.eclipse.egit.core.op.PullOperation


  public PullOperationUI(Set<Repository> repositories) {
    this.repositories = repositories.toArray(new Repository[repositories
        .size()]);
    int timeout = Activator.getDefault().getPreferenceStore().getInt(
        UIPreferences.REMOTE_CONNECTION_TIMEOUT);
    pullOperation = new PullOperation(repositories, timeout);
    pullOperation.setCredentialsProvider(new EGitCredentialsProvider());
    for (Repository repository : repositories)
      results.put(repository, NOT_TRIED_STATUS);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.op.PullOperation

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.