Skip to content

Instantly share code, notes, and snippets.

@gnomeria
Last active September 4, 2019 19:35
Show Gist options
  • Save gnomeria/c93a545fe0ebf08621a1051ed4c12817 to your computer and use it in GitHub Desktop.
Save gnomeria/c93a545fe0ebf08621a1051ed4c12817 to your computer and use it in GitHub Desktop.
Find git file sizes
git rev-list --objects --all \
| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
| awk '/^blob/ {print substr($0,6)}' \
| sort --numeric-sort --key=2 \
| cut --complement --characters=13-40 \
| numfmt --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment