Skip to content

Commit cf424f5

Browse files
peffgitster
authored andcommitted
clean: respect pathspecs with "-d"
git-clean uses read_directory to fill in a `struct dir` with potential hits. However, read_directory does not actually check against our pathspec. It uses a simplified version that may turn up false positives. As a result, we need to check that any hits match our pathspec. We do so reliably for non-directories. For directories, if "-d" is not given we check that the pathspec matched exactly (i.e., we are even stricter, and require an explicit "git clean foo" to clean "foo/"). But if "-d" is given, rather than relaxing the exact match to allow a recursive match, we do not check the pathspec at all. This regression was introduced in 113f10f (Make git-clean a builtin, 2007-11-11). Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7bbc4e8 commit cf424f5

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

builtin/clean.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,14 +964,15 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
964964
matches = match_pathspec_depth(&pathspec, ent->name,
965965
len, 0, NULL);
966966

967+
if (pathspec.nr && !matches)
968+
continue;
969+
967970
if (S_ISDIR(st.st_mode)) {
968971
if (remove_directories || (matches == MATCHED_EXACTLY)) {
969972
rel = relative_path(ent->name, prefix, &buf);
970973
string_list_append(&del_list, rel);
971974
}
972975
} else {
973-
if (pathspec.nr && !matches)
974-
continue;
975976
rel = relative_path(ent->name, prefix, &buf);
976977
string_list_append(&del_list, rel);
977978
}

t/t7300-clean.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,4 +511,20 @@ test_expect_success SANITY 'git clean -d with an unreadable empty directory' '
511511
! test -d foo
512512
'
513513

514+
test_expect_success 'git clean -d respects pathspecs (dir is prefix of pathspec)' '
515+
mkdir -p foo &&
516+
mkdir -p foobar &&
517+
git clean -df foobar &&
518+
test_path_is_dir foo &&
519+
test_path_is_missing foobar
520+
'
521+
522+
test_expect_success 'git clean -d respects pathspecs (pathspec is prefix of dir)' '
523+
mkdir -p foo &&
524+
mkdir -p foobar &&
525+
git clean -df foo &&
526+
test_path_is_missing foo &&
527+
test_path_is_dir foobar
528+
'
529+
514530
test_done

0 commit comments

Comments
 (0)