Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/plume-lib/merging

Merge drivers and merge tools for git
https://github.com/plume-lib/merging

Last synced: 8 days ago
JSON representation

Merge drivers and merge tools for git

Awesome Lists containing this project

README

        

# Adjacent lines

This merger resolves conflicts that result from edits on different but adjacent
lines. By default, git reports such edits as conflicts that must be manually
resolved.

## Example

Suppose that git merge yields a conflict like the following:

```
a
<<<<<<< OURS
bleft1
bleft2
bleft3
c
||||||| BASE
b
c
=======
b
>>>>>>> THEIRS
d
```

The adjacent-lines merger would resolve the conflict as:

```
a
bleft1
bleft2
bleft3
d
```