1GIT-MERGETOOL--LI(1)              Git Manual              GIT-MERGETOOL--LI(1)
2
3
4

NAME

6       git-mergetool--lib - Common Git merge tool shell scriptlets
7

SYNOPSIS

9       TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"
10

DESCRIPTION

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

FUNCTIONS

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           bring 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

GIT

46       Part of the git(1) suite
47
48
49
50Git 2.31.1                        2021-03-26              GIT-MERGETOOL--LI(1)
Impressum