Package org.eclipse.egit.core.op

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


      }
  }

  private void configureRepositoryConfig(CloneOperation op, GitRepositoryInfo gitRepositoryInfo) {
    for (RepositoryConfigProperty p : gitRepositoryInfo.getRepositoryConfigProperties()) {
      SetRepositoryConfigPropertyTask task = new SetRepositoryConfigPropertyTask(
          p.getSection(), p.getSubsection(), p.getName(),
          p.getValue());
      op.addPostCloneTask(task);
    }
  }
View Full Code Here

TOP

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

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.