git-stash: add new 'pop' subcommand
[git/dscho.git] / Documentation / git-mergetool.txt
blob50f106ec5b49b6d46f4be6fa012148b24d6e8801
1 git-mergetool(1)
2 ================
4 NAME
5 ----
6 git-mergetool - Run merge conflict resolution tools to resolve merge conflicts
8 SYNOPSIS
9 --------
10 'git-mergetool' [--tool=<tool>] [<file>]...
12 DESCRIPTION
13 -----------
15 Use 'git mergetool' to run one of several merge utilities to resolve
16 merge conflicts.  It is typically run after linkgit:git-merge[1].
18 If one or more <file> parameters are given, the merge tool program will
19 be run to resolve differences on each file.  If no <file> names are
20 specified, 'git mergetool' will run the merge tool program on every file
21 with merge conflicts.
23 OPTIONS
24 -------
25 -t or --tool=<tool>::
26         Use the merge resolution program specified by <tool>.
27         Valid merge tools are:
28         kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, ecmerge, and opendiff
30 If a merge resolution program is not specified, 'git mergetool'
31 will use the configuration variable merge.tool.  If the
32 configuration variable merge.tool is not set, 'git mergetool'
33 will pick a suitable default.
35 You can explicitly provide a full path to the tool by setting the
36 configuration variable mergetool.<tool>.path. For example, you
37 can configure the absolute path to kdiff3 by setting
38 mergetool.kdiff3.path. Otherwise, 'git mergetool' assumes the tool
39 is available in PATH.
41 Author
42 ------
43 Written by Theodore Y Ts'o <tytso@mit.edu>
45 Documentation
46 --------------
47 Documentation by Theodore Y Ts'o.
49 GIT
50 ---
51 Part of the linkgit:git[7] suite