• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

diffmatchpatch/H19-Nov-2019-

scripts/H19-Nov-2019-

testdata/H03-May-2022-

.gitignoreH A D19-Nov-2019252

.travis.ymlH A D19-Nov-2019617

APACHE-LICENSE-2.0H A D19-Nov-20199.9 KiB

AUTHORSH A D19-Nov-2019940

CONTRIBUTORSH A D19-Nov-20191.2 KiB

LICENSEH A D19-Nov-20191.1 KiB

MakefileH A D19-Nov-20191.2 KiB

README.mdH A D19-Nov-20194.1 KiB

go.modH A D19-Nov-2019281

go.sumH A D19-Nov-20191.8 KiB

README.md

1# go-diff [![GoDoc](https://godoc.org/github.com/sergi/go-diff?status.png)](https://godoc.org/github.com/sergi/go-diff/diffmatchpatch) [![Build Status](https://travis-ci.org/sergi/go-diff.svg?branch=master)](https://travis-ci.org/sergi/go-diff) [![Coverage Status](https://coveralls.io/repos/sergi/go-diff/badge.png?branch=master)](https://coveralls.io/r/sergi/go-diff?branch=master)
2
3go-diff offers algorithms to perform operations required for synchronizing plain text:
4
5- Compare two texts and return their differences.
6- Perform fuzzy matching of text.
7- Apply patches onto text.
8
9## Installation
10
11```bash
12go get -u github.com/sergi/go-diff/...
13```
14
15## Usage
16
17The following example compares two texts and writes out the differences to standard output.
18
19```go
20package main
21
22import (
23	"fmt"
24
25	"github.com/sergi/go-diff/diffmatchpatch"
26)
27
28const (
29	text1 = "Lorem ipsum dolor."
30	text2 = "Lorem dolor sit amet."
31)
32
33func main() {
34	dmp := diffmatchpatch.New()
35
36	diffs := dmp.DiffMain(text1, text2, false)
37
38	fmt.Println(dmp.DiffPrettyText(diffs))
39}
40```
41
42## Found a bug or are you missing a feature in go-diff?
43
44Please make sure to have the latest version of go-diff. If the problem still persists go through the [open issues](https://github.com/sergi/go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/sergi/go-diff/issues/new).
45
46## How to contribute?
47
48You want to contribute to go-diff? GREAT! If you are here because of a bug you want to fix or a feature you want to add, you can just read on. Otherwise we have a list of [open issues in the tracker](https://github.com/sergi/go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
49
50Please make sure that every behavioral change is accompanied by test cases. Additionally, every contribution must pass the `lint` and `test` Makefile targets which can be run using the following commands in the repository root directory.
51
52```bash
53make lint
54make test
55```
56
57After your contribution passes these commands, [create a PR](https://help.github.com/articles/creating-a-pull-request/) and we will review your contribution.
58
59## Origins
60
61go-diff is a Go language port of Neil Fraser's google-diff-match-patch code. His original code is available at [http://code.google.com/p/google-diff-match-patch/](http://code.google.com/p/google-diff-match-patch/).
62
63## Copyright and License
64
65The original Google Diff, Match and Patch Library is licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0). The full terms of that license are included here in the [APACHE-LICENSE-2.0](/APACHE-LICENSE-2.0) file.
66
67Diff, Match and Patch Library
68
69> Written by Neil Fraser
70> Copyright (c) 2006 Google Inc.
71> <http://code.google.com/p/google-diff-match-patch/>
72
73This Go version of Diff, Match and Patch Library is licensed under the [MIT License](http://www.opensource.org/licenses/MIT) (a.k.a. the Expat License) which is included here in the [LICENSE](/LICENSE) file.
74
75Go version of Diff, Match and Patch Library
76
77> Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
78> <https://github.com/sergi/go-diff>
79
80Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
81
82The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
83
84THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
85