Skip to content

Commit 20e94fb

Browse files
norm-path: disable rename detection properly
1 parent a6f1e35 commit 20e94fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git-normalize-pathnames

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ use warnings;
2020
print "Scanning repo...\n";
2121

2222
# Query all pathnames ever used in the Git repo in new to old order
23+
# Also disable all rename detection
2324
my @pathnames
24-
= `git -c diff.renameLimit=0 log --branches --name-only --pretty=format:`;
25+
= `git -c diff.rename=0 log --branches --name-only --pretty=format:`;
2526

2627
# Generate list of case sensitive unique pathnames
2728
my %seen_cs;

0 commit comments

Comments
 (0)