2007-03-05 22:05:16 -07:00
|
|
|
git-mergetool(1)
|
|
|
|
================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-mergetool - Run merge conflict resolution tools to resolve merge conflicts
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
'git-mergetool' [--tool=<tool>] [<file>]...
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2008-03-08 13:46:34 -07:00
|
|
|
Use `git mergetool` to run one of several merge utilities to resolve
|
2007-12-28 23:20:38 -07:00
|
|
|
merge conflicts. It is typically run after linkgit:git-merge[1].
|
2007-03-05 22:05:16 -07: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-03-08 13:46:34 -07:00
|
|
|
specified, `git mergetool` will run the merge tool program on every file
|
2007-03-05 22:05:16 -07:00
|
|
|
with merge conflicts.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-t or --tool=<tool>::
|
|
|
|
Use the merge resolution program specified by <tool>.
|
|
|
|
Valid merge tools are:
|
2007-10-17 11:16:12 -06:00
|
|
|
kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, ecmerge, and opendiff
|
2007-03-27 09:38:59 -06:00
|
|
|
+
|
2008-03-08 13:46:34 -07:00
|
|
|
If a merge resolution program is not specified, `git mergetool`
|
|
|
|
will use the configuration variable `merge.tool`. If the
|
|
|
|
configuration variable `merge.tool` is not set, `git mergetool`
|
2007-03-27 09:38:59 -06:00
|
|
|
will pick a suitable default.
|
2007-10-17 11:16:11 -06:00
|
|
|
+
|
|
|
|
You can explicitly provide a full path to the tool by setting the
|
2008-03-08 13:46:34 -07:00
|
|
|
configuration variable `mergetool.<tool>.path`. For example, you
|
2007-10-17 11:16:11 -06:00
|
|
|
can configure the absolute path to kdiff3 by setting
|
2008-03-08 13:46:34 -07:00
|
|
|
`mergetool.kdiff3.path`. Otherwise, `git mergetool` assumes the
|
|
|
|
tool is available in PATH.
|
2007-03-05 22:05:16 -07:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Theodore Y Ts'o <tytso@mit.edu>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Theodore Y Ts'o.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2007-12-28 23:20:38 -07:00
|
|
|
Part of the linkgit:git[7] suite
|