cherry-pick/revert: add scissors line on merge conflict
Fix a bug where the scissors line is placed after the Conflicts: section, in the case where a merge conflict occurs and commit.cleanup = scissors. Helped-by: Phillip Wood <phillip.wood@dunelm.org.uk> Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
dc42e9a83a
commit
1a2b985fb3
@ -927,14 +927,8 @@ static int suggest_conflicts(void)
|
||||
* Thus, we will get the cleanup mode which is returned when we _are_
|
||||
* using an editor.
|
||||
*/
|
||||
if (get_cleanup_mode(cleanup_arg, 1) == COMMIT_MSG_CLEANUP_SCISSORS) {
|
||||
fputc('\n', fp);
|
||||
wt_status_add_cut_line(fp);
|
||||
/* comments out the newline from append_conflicts_hint */
|
||||
fputc(comment_line_char, fp);
|
||||
}
|
||||
|
||||
append_conflicts_hint(&the_index, &msgbuf);
|
||||
append_conflicts_hint(&the_index, &msgbuf,
|
||||
get_cleanup_mode(cleanup_arg, 1));
|
||||
fputs(msgbuf.buf, fp);
|
||||
strbuf_release(&msgbuf);
|
||||
fclose(fp);
|
||||
|
||||
Reference in New Issue
Block a user