Ignore .svn version control files (#10536)
Co-authored-by: Simran Kedia <simk@fb.com>
This commit is contained in:
parent
efae85ec20
commit
26d9610e78
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ fn filter_picker_entry(entry: &DirEntry, root: &Path, dedup_symlinks: bool) -> b
|
|||
// in our picker.
|
||||
if matches!(
|
||||
entry.file_name().to_str(),
|
||||
Some(".git" | ".pijul" | ".jj" | ".hg")
|
||||
Some(".git" | ".pijul" | ".jj" | ".hg" | ".svn")
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue