Skip to content

clmoreno/AutoMergeTool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoMergeTool

AutoMergeTool is a tool compatible with git to simplify the process of solving conflicts after a git merge, rebase or cherry-pick.

License Build Status codecov

AMT enables you to chain automatic solvers on git conflicts, before openning your preferred manual merge tool (meld, kdiff, winmerge, …). It is currently under active development, and used internally in the Deezer Android team.

Installation

TL;DR; The easiest way to install AMT is to download or clone the archive somewhere, then include the following inside your ~/.gitconfig file :

[merge]
    tool = amt
    conflictstyle = diff3
[mergetool "amt"]
    cmd = /path/to/amt.py -b "$BASE" -l "$LOCAL" -r "$REMOTE" -m "$MERGED"
[amt]
    tools = gen_simplify;gen_woven;gen_additions;gen_deletions;meld

Prerequisite : ArachneMergeTool requires Python 3.x, and won't work with Python 2.x.

You can also read the documentation for installation and configuration instructions.

Usage example

Just use it as your default mergetool

Release History

  • This app is currently in alpha version

Contribute

If you want to contribute, please follow the Contribution guidelines.

See Also

License

This program is distributed under the Apache License 2.0

About

Half automatic merge toolchain for git

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.6%
  • Shell 0.4%