You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git ls-files does not have the ability to remove deleted but unstaged files from the result, but does have the ability to only show deleted but unstaged files. projectile-dir-files-alien and projectile-get-sub-projects-files need to remove deleted but unstaged files before returning the result.
Steps to reproduce the problem
Make sure fd is not in PATH
git init repo
cd repo
echo "hello world" > greeting.txt
git commit -m "greeting" greeting.txt
rm greeting.txt
M-x eval-expression RET (projectile-dir-files (projectile-project-root)) -> ("greeting.txt")
Expectation:
nil should be returned
Environment & Version information
git version 2.45.2
Projectile version information
Projectile 20240212.1100
Emacs version
29.4
Operating system
macOS
The text was updated successfully, but these errors were encountered:
git ls-files
does not have the ability to remove deleted but unstaged files from the result, but does have the ability to only show deleted but unstaged files.projectile-dir-files-alien
andprojectile-get-sub-projects-files
need to remove deleted but unstaged files before returning the result.Steps to reproduce the problem
Expectation:
nil should be returned
Environment & Version information
Projectile version information
Emacs version
29.4
Operating system
macOS
The text was updated successfully, but these errors were encountered: