|
|
|
@ -64,8 +64,6 @@ import org.eclipse.jgit.lib.GitIndex.Entry;
|
|
|
|
|
* Three-way merges are no performed. See {@link #setFailOnConflict(boolean)}. |
|
|
|
|
*/ |
|
|
|
|
public class WorkDirCheckout { |
|
|
|
|
Repository repo; |
|
|
|
|
|
|
|
|
|
File root; |
|
|
|
|
|
|
|
|
|
GitIndex index; |
|
|
|
@ -87,7 +85,6 @@ public class WorkDirCheckout {
|
|
|
|
|
|
|
|
|
|
WorkDirCheckout(Repository repo, File workDir, |
|
|
|
|
GitIndex oldIndex, GitIndex newIndex) throws IOException { |
|
|
|
|
this.repo = repo; |
|
|
|
|
this.root = workDir; |
|
|
|
|
this.index = oldIndex; |
|
|
|
|
this.merge = repo.mapTree(newIndex.writeTree()); |
|
|
|
@ -103,7 +100,6 @@ public class WorkDirCheckout {
|
|
|
|
|
*/ |
|
|
|
|
public WorkDirCheckout(Repository repo, File root, |
|
|
|
|
GitIndex index, Tree merge) { |
|
|
|
|
this.repo = repo; |
|
|
|
|
this.root = root; |
|
|
|
|
this.index = index; |
|
|
|
|
this.merge = merge; |
|
|
|
|