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
{{ message }}
This repository was archived by the owner on Oct 8, 2024. It is now read-only.
Listing all ignored files to later filter out those can have a big impact when we have some ignored folder with many files.
Maybe we should call ls-tree to obtain the file list:
Having git list all untracked files (41k) to later filter the files from the repo was a bad idea (my bad).
Does calling git ls-tree -r HEAD --name-only to get the name of the tracked files plus parsing the output of git status --untracked-files=all to get the untracked files letting git it self filter out the ignored files a good approach?