Examples of GitCompareInput


Examples of org.eclipse.egit.ui.internal.synchronize.compare.GitCompareInput

    } else /* getKind() == LEFT */{
      baseData = new ComparisonDataSource(remoteCommit, remoteId);
      remoteData = new ComparisonDataSource(baseCommit, localId);
    }

    GitCompareInput compareInput = getCompareInput(baseData, remoteData, remoteData);

    ancestorElement = compareInput.getAncestor();
    leftElement = compareInput.getLeft();
    rightElement = compareInput.getRight();
  }
View Full Code Here

Examples of org.eclipse.egit.ui.internal.synchronize.compare.GitCompareInput

   */
  protected GitCompareInput getCompareInput(ComparisonDataSource baseData,
      ComparisonDataSource remoteData, ComparisonDataSource ancestorData) {
    String gitPath = Repository.stripWorkDir(repo.getWorkTree(), path.toFile());

    return new GitCompareInput(repo, ancestorData, baseData, remoteData,
        gitPath);
  }
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.