daily-file-diet: replace expensive find | wc -l with git ls-tree#283
Merged
daily-file-diet: replace expensive find | wc -l with git ls-tree#283
find | wc -l with git ls-tree#283Conversation
Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Replace expensive find | wc -l with git ls-tree
daily-file-diet: replace expensive Mar 18, 2026
find | wc -l with git ls-tree
|
Tyvm 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
find ... -exec wc -l {} \;spawns onewcprocess per file, scans all file types, and requires manual exclusion of generated directories — slow enough to hit workflow timeouts on larger repos.Changes
tools.bashallowlist — Replaced 9find-based entries withgit ls-treecommand patterns:git ls-tree -r --name-only HEAD/git ls-tree -r -l --full-name HEADgrep -E * | grep -vE * | xargs wc -lAnalysis Process example — Replaced the
find | wcblock with:Test-file exclusion is now handled inline via
grep -vE, removing the need for a separate note.docs/daily-file-diet.md— Updated "Scans Source Files" description and customization tip to reflect thegit ls-treeapproach.Why
git ls-treenode_modules,vendor,dist, etc. are automatically excluded (they're gitignored and untracked)xargs wc -linvocation instead of N processes💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.