2007-03-06 06:05:16 +01:00
|
|
|
git-mergetool(1)
|
|
|
|
================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-mergetool - Run merge conflict resolution tools to resolve merge conflicts
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-11-13 13:41:14 +01:00
|
|
|
'git mergetool' [--tool=<tool>] [-y|--no-prompt|--prompt] [<file>]...
|
2007-03-06 06:05:16 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2008-03-08 21:46:34 +01:00
|
|
|
Use `git mergetool` to run one of several merge utilities to resolve
|
2008-07-03 07:41:41 +02:00
|
|
|
merge conflicts. It is typically run after 'git-merge'.
|
2007-03-06 06:05:16 +01:00
|
|
|
|
|
|
|
If one or more <file> parameters are given, the merge tool program will
|
|
|
|
be run to resolve differences on each file. If no <file> names are
|
2008-07-03 07:41:41 +02:00
|
|
|
specified, 'git-mergetool' will run the merge tool program on every file
|
2007-03-06 06:05:16 +01:00
|
|
|
with merge conflicts.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2009-01-16 22:42:33 +01:00
|
|
|
-t <tool>::
|
|
|
|
--tool=<tool>::
|
2007-03-06 06:05:16 +01:00
|
|
|
Use the merge resolution program specified by <tool>.
|
|
|
|
Valid merge tools are:
|
2009-04-06 10:31:18 +02:00
|
|
|
kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, ecmerge,
|
2009-10-28 22:39:32 +01:00
|
|
|
diffuse, tortoisemerge, opendiff, p4merge and araxis.
|
2007-03-27 17:38:59 +02:00
|
|
|
+
|
2008-07-03 07:41:41 +02:00
|
|
|
If a merge resolution program is not specified, 'git-mergetool'
|
2008-03-08 21:46:34 +01:00
|
|
|
will use the configuration variable `merge.tool`. If the
|
2008-07-03 07:41:41 +02:00
|
|
|
configuration variable `merge.tool` is not set, 'git-mergetool'
|
2007-03-27 17:38:59 +02:00
|
|
|
will pick a suitable default.
|
2007-10-17 19:16:11 +02:00
|
|
|
+
|
|
|
|
You can explicitly provide a full path to the tool by setting the
|
2008-03-08 21:46:34 +01:00
|
|
|
configuration variable `mergetool.<tool>.path`. For example, you
|
2007-10-17 19:16:11 +02:00
|
|
|
can configure the absolute path to kdiff3 by setting
|
2008-07-03 07:41:41 +02:00
|
|
|
`mergetool.kdiff3.path`. Otherwise, 'git-mergetool' assumes the
|
2008-03-08 21:46:34 +01:00
|
|
|
tool is available in PATH.
|
2008-03-08 21:47:06 +01:00
|
|
|
+
|
2008-12-09 07:23:51 +01:00
|
|
|
Instead of running one of the known merge tool programs,
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-mergetool' can be customized to run an alternative program
|
2008-08-05 18:12:05 +02:00
|
|
|
by specifying the command line to invoke in a configuration
|
2008-03-08 21:47:06 +01:00
|
|
|
variable `mergetool.<tool>.cmd`.
|
|
|
|
+
|
2008-07-03 07:41:41 +02:00
|
|
|
When 'git-mergetool' is invoked with this tool (either through the
|
2008-03-08 21:47:06 +01:00
|
|
|
`-t` or `--tool` option or the `merge.tool` configuration
|
|
|
|
variable) the configured command line will be invoked with `$BASE`
|
|
|
|
set to the name of a temporary file containing the common base for
|
|
|
|
the merge, if available; `$LOCAL` set to the name of a temporary
|
|
|
|
file containing the contents of the file on the current branch;
|
|
|
|
`$REMOTE` set to the name of a temporary file containing the
|
|
|
|
contents of the file to be merged, and `$MERGED` set to the name
|
|
|
|
of the file to which the merge tool should write the result of the
|
|
|
|
merge resolution.
|
|
|
|
+
|
|
|
|
If the custom merge tool correctly indicates the success of a
|
2008-12-09 07:23:51 +01:00
|
|
|
merge resolution with its exit code, then the configuration
|
2008-03-08 21:47:06 +01:00
|
|
|
variable `mergetool.<tool>.trustExitCode` can be set to `true`.
|
2008-07-03 07:41:41 +02:00
|
|
|
Otherwise, 'git-mergetool' will prompt the user to indicate the
|
2008-03-08 21:47:06 +01:00
|
|
|
success of the resolution after the custom tool has exited.
|
2007-03-06 06:05:16 +01:00
|
|
|
|
2009-01-16 22:42:33 +01:00
|
|
|
-y::
|
|
|
|
--no-prompt::
|
2008-11-13 13:41:14 +01:00
|
|
|
Don't prompt before each invocation of the merge resolution
|
|
|
|
program.
|
|
|
|
|
|
|
|
--prompt::
|
|
|
|
Prompt before each invocation of the merge resolution program.
|
|
|
|
This is the default behaviour; the option is provided to
|
|
|
|
override any configuration settings.
|
|
|
|
|
2007-03-06 06:05:16 +01:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Theodore Y Ts'o <tytso@mit.edu>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Theodore Y Ts'o.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|