Skip to content

Commit 8d0d53a

Browse files
committed
Merge branch 'sb/submodule-merge-in-merge-recursive'
Finishing touches to a topic that already is in 'master'. * sb/submodule-merge-in-merge-recursive: merge-submodule: reduce output verbosity
2 parents fb6ac9e + 40aac22 commit 8d0d53a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

merge-recursive.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ static int merge_submodule(struct merge_options *o,
12081208
output(o, 3, _("Fast-forwarding submodule %s to the following commit:"), path);
12091209
output_commit_title(o, commit_b);
12101210
} else if (show(o, 2))
1211-
output(o, 2, _("Fast-forwarding submodule %s to %s"), path, oid_to_hex(b));
1211+
output(o, 2, _("Fast-forwarding submodule %s"), path);
12121212
else
12131213
; /* no output */
12141214

@@ -1220,7 +1220,7 @@ static int merge_submodule(struct merge_options *o,
12201220
output(o, 3, _("Fast-forwarding submodule %s to the following commit:"), path);
12211221
output_commit_title(o, commit_a);
12221222
} else if (show(o, 2))
1223-
output(o, 2, _("Fast-forwarding submodule %s to %s"), path, oid_to_hex(a));
1223+
output(o, 2, _("Fast-forwarding submodule %s"), path);
12241224
else
12251225
; /* no output */
12261226

0 commit comments

Comments
 (0)