Git was quoting them for us, which was not what we wanted. So call diff-index with the -z flag, so that it doesn't. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> --- stgit/git.py | 18 +++++++++++++----- t/t3200-non-ascii-filenames.sh | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/stgit/git.py b/stgit/git.py index deb5efc..d4cd946 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -236,11 +236,19 @@ def tree_status(files = None, tree_id = 'HEAD', unknown = False, args = diff_flags + [tree_id] if files: args += ['--'] + files - for line in GRun('diff-index', *args).output_lines(): - fs = tuple(line.rstrip().split(' ',4)[-1].split('\t',1)) - if fs[1] not in reported_files: - cache_files.append(fs) - reported_files.add(fs[1]) + t = None + for line in GRun('diff-index', '-z', *args).raw_output().split('\0'): + if not line: + # There's a zero byte at the end of the output, which + # gives us an empty string as the last "line". + continue + if t == None: + mode_a, mode_b, sha1_a, sha1_b, t = line.split(' ') + else: + if not line in reported_files: + cache_files.append((t, line)) + reported_files.add(line) + t = None # files in the index but changed on (or removed from) disk args = list(diff_flags) diff --git a/t/t3200-non-ascii-filenames.sh b/t/t3200-non-ascii-filenames.sh index 1d82a9f..a04ead8 100755 --- a/t/t3200-non-ascii-filenames.sh +++ b/t/t3200-non-ascii-filenames.sh @@ -20,7 +20,7 @@ test_expect_success 'Setup' ' stg push ' -test_expect_failure 'Rebase onto changed non-ASCII file' ' +test_expect_success 'Rebase onto changed non-ASCII file' ' stg rebase upstream ' -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html