1GIT-MERGETOOL--LIB(1) Git Manual GIT-MERGETOOL--LIB(1)
2
3
4
6 git-mergetool--lib - Common Git merge tool shell scriptlets
7
9 TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"
10
12 This is not a command the end user would want to run. Ever. This
13 documentation is meant for people who are studying the Porcelain-ish
14 scripts and/or are writing new ones.
15
16 The git-mergetool--lib scriptlet is designed to be sourced (using .) by
17 other shell scripts to set up functions for working with Git merge
18 tools.
19
20 Before sourcing git-mergetool--lib, your script must set TOOL_MODE to
21 define the operation mode for the functions listed below. diff and
22 merge are valid values.
23
25 get_merge_tool
26 Returns a merge tool. The return code is 1 if we returned a guessed
27 merge tool, else 0. $GIT_MERGETOOL_GUI may be set to true to
28 search for the appropriate guitool.
29
30 get_merge_tool_cmd
31 Returns the custom command for a merge tool.
32
33 get_merge_tool_path
34 Returns the custom path for a merge tool.
35
36 initialize_merge_tool
37 Brings merge tool specific functions into scope so they can be used
38 or overridden.
39
40 run_merge_tool
41 Launches a merge tool given the tool name and a true/false flag to
42 indicate whether a merge base is present. $MERGED, $LOCAL,
43 $REMOTE, and $BASE must be defined for use by the merge tool.
44
46 Part of the git(1) suite
47
48
49
50Git 2.43.0 11/20/2023 GIT-MERGETOOL--LIB(1)