Skip to content

Commit 19b1cb6

Browse files
committed
filter-repo: also allow --path-rename arguments before --path arguments
The manual says Also, `--path-rename` brings up ordering issues; all path arguments are applied in order which suggests that you can have --path-rename arguments both before and after --path arguments, but having --path-rename arguments before --path arguments was broken. It did work once upon a time, but was broken by 5c4637f (Documentation: add guides for people converting from filter-branch or BFG, 2020-05-16) because it stored the filename in both `pathname` and `full_pathname`, and would have renames affect only `full_pathname`, while filtering would operate only on `pathname`. The existence of allowing filtering based on basename really does require us to have both variables, but since we have both, ensure that path_rename updates both. Signed-off-by: Elijah Newren <newren@gmail.com>
1 parent 58ab2ca commit 19b1cb6

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

git-filter-repo

+2
Original file line numberDiff line numberDiff line change
@@ -3867,8 +3867,10 @@ class RepoFilter(object):
38673867
assert match_type in ('match','regex') # glob was translated to regex
38683868
if match_type == 'match' and filename_matches(match, full_pathname):
38693869
full_pathname = full_pathname.replace(match, repl, 1)
3870+
pathname = full_pathname # rename incompatible with use_base_name
38703871
if match_type == 'regex':
38713872
full_pathname = match.sub(repl, full_pathname)
3873+
pathname = full_pathname # rename incompatible with use_base_name
38723874
return full_pathname if (wanted == filtering_is_inclusive) else None
38733875

38743876
args = self._args

t/t9390-filter-repo-basics.sh

+21
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,27 @@ test_expect_success 'Mixing filtering and renaming paths, enough filters' '
262262
)
263263
'
264264

265+
test_expect_success 'Path rename also allowed before path filtering' '
266+
create_path_filtering_and_renaming &&
267+
git clone --no-local path_filtering_and_renaming \
268+
path_renaming_and_filtering &&
269+
(
270+
cd path_renaming_and_filtering &&
271+
272+
git filter-repo --invert-paths \
273+
--path-rename src/main/java/com/org/foo/uptoten:src/main/java/org/foo/asbigasten \
274+
--path src/main/java/com/ \
275+
276+
cat <<-EOF >expect &&
277+
.gitignore
278+
src/main/java/org/foo/asbigasten
279+
src/main/resources/uptofive
280+
EOF
281+
git ls-files >actual &&
282+
test_cmp expect actual
283+
)
284+
'
285+
265286
test_expect_success 'Mixing filtering and to-subdirectory-filter' '
266287
create_path_filtering_and_renaming &&
267288
git clone --no-local path_filtering_and_renaming \

0 commit comments

Comments
 (0)