File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ launch_merge_tool () {
4444 " $GIT_DIFF_PATH_TOTAL " " $MERGED "
4545 if use_ext_cmd
4646 then
47- printf " Launch '%s' [Y/n]: " \
47+ printf " Launch '%s' [Y/n]? " \
4848 " $GIT_DIFFTOOL_EXTCMD "
4949 else
50- printf " Launch '%s' [Y/n]: " " $merge_tool "
50+ printf " Launch '%s' [Y/n]? " " $merge_tool "
5151 fi
5252 read ans || return
5353 if test " $ans " = n
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ check_unchanged () {
100100 while true
101101 do
102102 echo " $MERGED seems unchanged."
103- printf " Was the merge successful? [y/n] "
103+ printf " Was the merge successful [y/n]? "
104104 read answer || return 1
105105 case " $answer " in
106106 y* |Y* ) return 0 ;;
Original file line number Diff line number Diff line change 413413prompt_after_failed_merge () {
414414 while true
415415 do
416- printf " Continue merging other unresolved paths ( y/n) ? "
416+ printf " Continue merging other unresolved paths [ y/n] ? "
417417 read ans || return 1
418418 case " $ans " in
419419 [yY]* )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ difftool_test_setup ()
2020prompt_given ()
2121{
2222 prompt=" $1 "
23- test " $prompt " = " Launch 'test-tool' [Y/n]: branch"
23+ test " $prompt " = " Launch 'test-tool' [Y/n]? branch"
2424}
2525
2626# Create a file on master and change it on branch
You can’t perform that action at this time.
0 commit comments