Skip to content

Commit cd13759

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
Merge pull request #2315 from ROGERSM94/fix-rebase
rebase-merges: improve --rebase-merges label generation
2 parents 0568768 + 6f3560d commit cd13759

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

sequencer.c

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4530,8 +4530,18 @@ static int make_script_with_merges(struct pretty_print_context *pp,
45304530
else
45314531
strbuf_addbuf(&label, &oneline);
45324532

4533+
/*
4534+
* Sanitize labels by replacing non-alpha-numeric characters
4535+
* (including white-space ones) by dashes, as they might be
4536+
* illegal in file names (and hence in ref names).
4537+
*
4538+
* Note that we retain non-ASCII UTF-8 characters (identified
4539+
* via the most significant bit). They should be all acceptable
4540+
* in file names. We do not validate the UTF-8 here, that's not
4541+
* the job of this function.
4542+
*/
45334543
for (p1 = label.buf; *p1; p1++)
4534-
if (isspace(*p1))
4544+
if (!(*p1 & 0x80) && !isalnum(*p1))
45354545
*(char *)p1 = '-';
45364546

45374547
strbuf_reset(&buf);

t/t3430-rebase-merges.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,4 +441,9 @@ test_expect_success '--continue after resolving conflicts after a merge' '
441441
test_path_is_missing .git/MERGE_HEAD
442442
'
443443

444+
test_expect_success '--rebase-merges with commit that can generate bad characters for filename' '
445+
git checkout -b colon-in-label E &&
446+
git merge -m "colon: this should work" G &&
447+
git rebase --rebase-merges --force-rebase E
448+
'
444449
test_done

0 commit comments

Comments
 (0)