diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-10-31 23:53:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-31 23:53:55 -0700 |
commit | 6959893b0b65ebc68ce2fb524a8ec15a26ca4972 (patch) | |
tree | a499f6b0a7309306f667b3cbded1a1bcf1ff35de /Documentation | |
parent | 452b80058235040461dae01933270c6668741b64 (diff) | |
parent | d279fc1a76bf9bfeedded1a1c8ebcfc8779f5b10 (diff) | |
download | git-6959893b0b65ebc68ce2fb524a8ec15a26ca4972.tar.gz |
Merge branch 'sp/mergetool'
* sp/mergetool:
mergetool: avoid misleading message "Resetting to default..."
mergetool: add support for ECMerge
mergetool: use path to mergetool in config var mergetool.<tool>.path
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-mergetool.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/git-mergetool.txt b/Documentation/git-mergetool.txt index 6c32c6d18e..a26c260162 100644 --- a/Documentation/git-mergetool.txt +++ b/Documentation/git-mergetool.txt @@ -25,12 +25,18 @@ OPTIONS -t or --tool=<tool>:: Use the merge resolution program specified by <tool>. Valid merge tools are: - kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, and opendiff + kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, ecmerge, and opendiff + 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' will pick a suitable default. ++ +You can explicitly provide a full path to the tool by setting the +configuration variable mergetool.<tool>.path. For example, you +can configure the absolute path to kdiff3 by setting +mergetool.kdiff3.path. Otherwise, 'git mergetool' assumes the tool +is available in PATH. Author ------ |