Skip to content

Commit 877ca5c

Browse files
committed
Merge pull request #2315 from ROGERSM94/fix-rebase
rebase-merges: improve --rebase-merges label generation
2 parents 168a9fe + 568cf48 commit 877ca5c

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

sequencer.c

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

4673+
/*
4674+
* Sanitize labels by replacing non-alpha-numeric characters
4675+
* (including white-space ones) by dashes, as they might be
4676+
* illegal in file names (and hence in ref names).
4677+
*
4678+
* Note that we retain non-ASCII UTF-8 characters (identified
4679+
* via the most significant bit). They should be all acceptable
4680+
* in file names. We do not validate the UTF-8 here, that's not
4681+
* the job of this function.
4682+
*/
46734683
for (p1 = label.buf; *p1; p1++)
4674-
if (isspace(*p1))
4684+
if (!(*p1 & 0x80) && !isalnum(*p1))
46754685
*(char *)p1 = '-';
46764686

46774687
strbuf_reset(&buf);

t/t3430-rebase-merges.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,4 +469,10 @@ test_expect_success '--rebase-merges with strategies' '
469469
test_cmp expect G.t
470470
'
471471

472+
test_expect_success '--rebase-merges with commit that can generate bad characters for filename' '
473+
git checkout -b colon-in-label E &&
474+
git merge -m "colon: this should work" G &&
475+
git rebase --rebase-merges --force-rebase E
476+
'
477+
472478
test_done

0 commit comments

Comments
 (0)