File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ launch_merge_tool () {
44
44
" $GIT_DIFF_PATH_TOTAL " " $MERGED "
45
45
if use_ext_cmd
46
46
then
47
- printf " Launch '%s' [Y/n]: " \
47
+ printf " Launch '%s' [Y/n]? " \
48
48
" $GIT_DIFFTOOL_EXTCMD "
49
49
else
50
- printf " Launch '%s' [Y/n]: " " $merge_tool "
50
+ printf " Launch '%s' [Y/n]? " " $merge_tool "
51
51
fi
52
52
read ans || return
53
53
if test " $ans " = n
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ check_unchanged () {
100
100
while true
101
101
do
102
102
echo " $MERGED seems unchanged."
103
- printf " Was the merge successful? [y/n] "
103
+ printf " Was the merge successful [y/n]? "
104
104
read answer || return 1
105
105
case " $answer " in
106
106
y* |Y* ) return 0 ;;
Original file line number Diff line number Diff line change 413
413
prompt_after_failed_merge () {
414
414
while true
415
415
do
416
- printf " Continue merging other unresolved paths ( y/n) ? "
416
+ printf " Continue merging other unresolved paths [ y/n] ? "
417
417
read ans || return 1
418
418
case " $ans " in
419
419
[yY]* )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ difftool_test_setup ()
20
20
prompt_given ()
21
21
{
22
22
prompt=" $1 "
23
- test " $prompt " = " Launch 'test-tool' [Y/n]: branch"
23
+ test " $prompt " = " Launch 'test-tool' [Y/n]? branch"
24
24
}
25
25
26
26
# Create a file on master and change it on branch
You can’t perform that action at this time.
0 commit comments