Skip to content

Commit f5b121a

Browse files
committed
Merge branch 'rt/cherry-revert-conflict-summary'
In the older days, the header "Conflicts:" in "cherry-pick" and "merge" was separated by a blank line from the list of paths that follow for readability, but when "merge" was rewritten in C, we lost it by mistake. Remove the newline from "cherry-pick" to make them match again. By Ralf Thielow * rt/cherry-revert-conflict-summary: sequencer: remove additional blank line
2 parents 7a9bb26 + 5112068 commit f5b121a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ static int do_recursive_merge(struct commit *base, struct commit *next,
234234

235235
if (!clean) {
236236
int i;
237-
strbuf_addstr(msgbuf, "\nConflicts:\n\n");
237+
strbuf_addstr(msgbuf, "\nConflicts:\n");
238238
for (i = 0; i < active_nr;) {
239239
struct cache_entry *ce = active_cache[i++];
240240
if (ce_stage(ce)) {

0 commit comments

Comments
 (0)