Examples of SetRepositoryConfigPropertyTask


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