Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
org.eclipse.jgit.merge |
Content and commit history merge algorithms.
|
Modifier and Type | Method and Description |
---|---|
void |
MergeResult.addConflict(String path,
MergeResult<?> lowLevelResult)
Add a conflict
|
Constructor and Description |
---|
MergeResult(ObjectId newHead,
ObjectId base,
ObjectId[] mergedCommits,
MergeResult.MergeStatus mergeStatus,
MergeStrategy mergeStrategy,
Map<String,MergeResult<?>> lowLevelResults)
Constructor for MergeResult.
|
MergeResult(ObjectId newHead,
ObjectId base,
ObjectId[] mergedCommits,
MergeResult.MergeStatus mergeStatus,
MergeStrategy mergeStrategy,
Map<String,MergeResult<?>> lowLevelResults,
Map<String,ResolveMerger.MergeFailureReason> failingPaths,
String description)
Constructor for MergeResult.
|
MergeResult(ObjectId newHead,
ObjectId base,
ObjectId[] mergedCommits,
MergeResult.MergeStatus mergeStatus,
MergeStrategy mergeStrategy,
Map<String,MergeResult<?>> lowLevelResults,
String description)
Constructor for MergeResult.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,MergeResult<? extends Sequence>> |
ResolveMerger.mergeResults
Low-level textual merge results.
|
Modifier and Type | Method and Description |
---|---|
<S extends Sequence> |
MergeAlgorithm.merge(SequenceComparator<S> cmp,
S base,
S ours,
S theirs)
Does the three way merge between a common base and two sequences.
|
Modifier and Type | Method and Description |
---|---|
Map<String,MergeResult<? extends Sequence>> |
ResolveMerger.getMergeResults()
Get the mergeResults
|
Modifier and Type | Method and Description |
---|---|
void |
MergeFormatter.formatMerge(OutputStream out,
MergeResult<RawText> res,
List<String> seqName,
String charsetName)
Formats the results of a merge of
RawText
objects in a Git conformant way. |
void |
MergeFormatter.formatMerge(OutputStream out,
MergeResult res,
String baseName,
String oursName,
String theirsName,
String charsetName)
Formats the results of a merge of exactly two
RawText objects in a Git conformant way. |
Copyright © 2018 Eclipse JGit Project. All rights reserved.