git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-difftool: allow skipping file by typing 'n' at prompt
@ 2011-10-04 10:53 Sitaram Chamarty
  2011-10-04 15:25 ` Junio C Hamano
  0 siblings, 1 reply; 14+ messages in thread
From: Sitaram Chamarty @ 2011-10-04 10:53 UTC (permalink / raw)
  To: git, gitster

Signed-off-by: Sitaram Chamarty <sitaram@atc.tcs.com>
---

I'm using what is pretty much a universal convention to
signify that the default choice is "y"; I hope documentation
for something so small is not needed but if it is, let me
know and I'll do that also.

 git-difftool--helper.sh |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/git-difftool--helper.sh b/git-difftool--helper.sh
index 8452890..bc1b098 100755
--- a/git-difftool--helper.sh
+++ b/git-difftool--helper.sh
@@ -38,15 +38,16 @@ launch_merge_tool () {
 
 	# $LOCAL and $REMOTE are temporary files so prompt
 	# the user with the real $MERGED name before launching $merge_tool.
+	ans=y
 	if should_prompt
 	then
 		printf "\nViewing: '$MERGED'\n"
 		if use_ext_cmd
 		then
-			printf "Hit return to launch '%s': " \
+			printf "Launch '%s' [y]/n: " \
 				"$GIT_DIFFTOOL_EXTCMD"
 		else
-			printf "Hit return to launch '%s': " "$merge_tool"
+			printf "Launch '%s' [y]/n: " "$merge_tool"
 		fi
 		read ans
 	fi
@@ -54,9 +55,9 @@ launch_merge_tool () {
 	if use_ext_cmd
 	then
 		export BASE
-		eval $GIT_DIFFTOOL_EXTCMD '"$LOCAL"' '"$REMOTE"'
+		test "$ans" != "n" && eval $GIT_DIFFTOOL_EXTCMD '"$LOCAL"' '"$REMOTE"'
 	else
-		run_merge_tool "$merge_tool"
+		test "$ans" != "n" && run_merge_tool "$merge_tool"
 	fi
 }
 
-- 
1.7.6

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2011-10-10 23:39 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04 10:53 [PATCH] git-difftool: allow skipping file by typing 'n' at prompt Sitaram Chamarty
2011-10-04 15:25 ` Junio C Hamano
2011-10-04 17:49   ` Jeff King
2011-10-04 18:02   ` Phil Hord
2011-10-04 19:28     ` Junio C Hamano
2011-10-04 23:05       ` Sitaram Chamarty
2011-10-06 12:56         ` Sitaram Chamarty
2011-10-06 17:36           ` Junio C Hamano
2011-10-06 18:15             ` Sitaram Chamarty
2011-10-07 20:09               ` Junio C Hamano
2011-10-08 13:10                 ` Sitaram Chamarty
2011-10-09 11:26                   ` Charles Bailey
2011-10-10 20:56                   ` Junio C Hamano
2011-10-10 23:39                     ` Sitaram Chamarty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).