Skip to content

Commit 5c8c5cc

Browse files
committed
Merge pull request #2315 from ROGERSM94/fix-rebase
rebase-merges: improve --rebase-merges label generation
2 parents 48c5508 + a9127f1 commit 5c8c5cc

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
@@ -4603,8 +4603,18 @@ static int make_script_with_merges(struct pretty_print_context *pp,
46034603
else
46044604
strbuf_addbuf(&label, &oneline);
46054605

4606+
/*
4607+
* Sanitize labels by replacing non-alpha-numeric characters
4608+
* (including white-space ones) by dashes, as they might be
4609+
* illegal in file names (and hence in ref names).
4610+
*
4611+
* Note that we retain non-ASCII UTF-8 characters (identified
4612+
* via the most significant bit). They should be all acceptable
4613+
* in file names. We do not validate the UTF-8 here, that's not
4614+
* the job of this function.
4615+
*/
46064616
for (p1 = label.buf; *p1; p1++)
4607-
if (isspace(*p1))
4617+
if (!(*p1 & 0x80) && !isalnum(*p1))
46084618
*(char *)p1 = '-';
46094619

46104620
strbuf_reset(&buf);

t/t3430-rebase-merges.sh

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

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

0 commit comments

Comments
 (0)