diff options
author | David Aguilar <davvid@gmail.com> | 2011-08-18 00:23:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-19 00:09:19 -0700 |
commit | bc7a96a8965d4ce0651689301e1702a942dfb9f0 (patch) | |
tree | d4d6f70f97683090221c8f7ba4888a54e4d73a92 /mergetools/diffuse | |
parent | 240dc3e8edb3ae4ee968febc006fa761811c60e6 (diff) | |
download | git-bc7a96a8965d4ce0651689301e1702a942dfb9f0.tar.gz |
mergetool--lib: Refactor tools into separate files
Individual merge tools are now defined in a mergetools/$tool
file which is sourced at runtime.
The individual files are installed into $(git --exec-path)/mergetools/.
New tools can be added by creating a new file instead of editing the
git-mergetool--lib.sh scriptlet.
http://thread.gmane.org/gmane.comp.version-control.git/134906/focus=135006
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'mergetools/diffuse')
-rw-r--r-- | mergetools/diffuse | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mergetools/diffuse b/mergetools/diffuse new file mode 100644 index 0000000000..02e0843f47 --- /dev/null +++ b/mergetools/diffuse @@ -0,0 +1,17 @@ +diff_cmd () { + "$merge_tool_path" "$LOCAL" "$REMOTE" | cat +} + +merge_cmd () { + touch "$BACKUP" + if $base_present + then + "$merge_tool_path" \ + "$LOCAL" "$MERGED" "$REMOTE" \ + "$BASE" | cat + else + "$merge_tool_path" \ + "$LOCAL" "$MERGED" "$REMOTE" | cat + fi + check_unchanged +} |