Package org.eclipse.egit.ui.wizards.clone

Examples of org.eclipse.egit.ui.wizards.clone.SampleTestRepository


  private File localRepoPath;

  @Before
  public void setup() throws Exception {
    TestUtil.disableProxy();
    remoteRepository = new SampleTestRepository(NUMBER_RANDOM_COMMITS, true);
    localRepoPath = new File(ResourcesPlugin.getWorkspace().getRoot()
        .getLocation().toFile(), "test" + System.nanoTime());
    String branch = Constants.R_HEADS + SampleTestRepository.FIX;
    CloneOperation cloneOperation = new CloneOperation(new URIish(
        remoteRepository.getUri()), true, null, localRepoPath, branch,
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.wizards.clone.SampleTestRepository

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.