Merge branch 'as/sequencer-customizable-comment-char'
Honor core.commentchar when preparing the list of commits to replay in "rebase -i". * as/sequencer-customizable-comment-char: sequencer: use configured comment character
This commit is contained in:
commit
d6465fb4fc
@ -4022,7 +4022,7 @@ static int make_script_with_merges(struct pretty_print_context *pp,
|
|||||||
entry = oidmap_get(&state.commit2label, &commit->object.oid);
|
entry = oidmap_get(&state.commit2label, &commit->object.oid);
|
||||||
|
|
||||||
if (entry)
|
if (entry)
|
||||||
fprintf(out, "\n# Branch %s\n", entry->string);
|
fprintf(out, "\n%c Branch %s\n", comment_line_char, entry->string);
|
||||||
else
|
else
|
||||||
fprintf(out, "\n");
|
fprintf(out, "\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user