Documentation ¶
Overview ¶
Package diff3 implements a three-way merge algorithm Original version in Javascript by Bryan Housel @bhousel: https://github.com/bhousel/node-diff3, which in turn is based on project Synchrotron, created by Tony Garnock-Jones. For more detail please visit: http://homepages.kcbbs.gen.nz/tonyg/projects/synchrotron.html https://github.com/tonyg/synchrotron
Ported to go by Javier Peletier @jpeletier
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Conflict ¶
type Conflict struct {
// contains filtered or unexported fields
}
Conflict describes a merge conflict
type Diff3MergeResult ¶
type Diff3MergeResult struct {
// contains filtered or unexported fields
}
Diff3MergeResult describes a merge result
func Diff3Merge ¶
func Diff3Merge(a, o, b []string, excludeFalseConflicts bool) []*Diff3MergeResult
Diff3Merge applies the output of diff3MergeIndices to actually construct the merged file; the returned result alternates between 'ok' and 'conflict' blocks.
type MergeResult ¶
type MergeResult struct { Conflicts bool //Conflict indicates if there is any merge conflict Result io.Reader // returns a reader that contains the merge result }
MergeResult describes a merge result