TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Hot File Finder – Finding the 'hottest' files in a Git repo

4 pointsby colinhowealmost 11 years ago

1 comment

a_penangalmost 11 years ago
Here&#x27;s an alternate version I&#x27;d written to such identify files. Using the git command line, invoke the following function from within any git repo:<p>most-volatile-files () { git log --pretty=format: --name-only | sort | uniq -c | sort -rg | head -10; }
评论 #8206191 未加载
评论 #8205194 未加载