Skip to content

Commit d3d6c4e

Browse files
ROGERSM94dscho
authored andcommitted
rebase -r: let label generate safer labels
The `label` todo command in interactive rebases creates temporary refs in the `refs/rewritten/` namespace. These refs are stored as loose refs, i.e. as files in `.git/refs/rewritten/`, therefore they have to conform with file name limitations on the current filesystem. This poses a problem in particular on NTFS/FAT, where e.g. the colon character is not a valid part of a file name. Let's safeguard against this by replacing not only white-space characters by dashes, but all non-alpha-numeric ones. However, we exempt non-ASCII UTF-8 characters from that, as it should be quite possible to reflect branch names such as `↯↯↯` in refs/file names. Signed-off-by: Matthew Rogers <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent d7ae4d7 commit d3d6c4e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

sequencer.c

+11-1
Original file line numberDiff line numberDiff line change
@@ -4635,8 +4635,18 @@ static int make_script_with_merges(struct pretty_print_context *pp,
46354635
else
46364636
strbuf_addbuf(&label, &oneline);
46374637

4638+
/*
4639+
* Sanitize labels by replacing non-alpha-numeric characters
4640+
* (including white-space ones) by dashes, as they might be
4641+
* illegal in file names (and hence in ref names).
4642+
*
4643+
* Note that we retain non-ASCII UTF-8 characters (identified
4644+
* via the most significant bit). They should be all acceptable
4645+
* in file names. We do not validate the UTF-8 here, that's not
4646+
* the job of this function.
4647+
*/
46384648
for (p1 = label.buf; *p1; p1++)
4639-
if (isspace(*p1))
4649+
if (!(*p1 & 0x80) && !isalnum(*p1))
46404650
*(char *)p1 = '-';
46414651

46424652
strbuf_reset(&buf);

t/t3430-rebase-merges.sh

+5
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)