]> Pileus Git - ~andy/git/commitdiff
mergetool--lib: improve the help text in guess_merge_tool()
authorDavid Aguilar <davvid@gmail.com>
Mon, 28 Jan 2013 00:52:24 +0000 (16:52 -0800)
committerJunio C Hamano <gitster@pobox.com>
Tue, 29 Jan 2013 22:31:22 +0000 (14:31 -0800)
This code path is only activated when the user does not have a valid
configured tool.  Add a message to guide new users towards configuring a
default tool.

Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-mergetool--lib.sh

index 2a67383081cae8e33702fdb70db51fb1d1db87ba..7edc27f92c462774c37f65904cb17a64d86eb6e3 100644 (file)
@@ -240,7 +240,13 @@ show_tool_help () {
 
 guess_merge_tool () {
        list_merge_tool_candidates
-       echo >&2 "merge tool candidates: $tools"
+       cat >&2 <<-EOF
+
+       This message is displayed because '$TOOL_MODE.tool' is not configured.
+       See 'git ${TOOL_MODE}tool --tool-help' or 'git help config' for more details.
+       'git ${TOOL_MODE}tool' will now attempt to use one of the following tools:
+       $tools
+       EOF
 
        # Loop over each candidate and stop when a valid merge tool is found.
        for i in $tools