Package org.eclipse.egit.ui.internal.synchronize.compare

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


   */
  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

Related Classes of org.eclipse.egit.ui.internal.synchronize.compare.GitCompareInput

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.