Skip to content

Instantly share code, notes, and snippets.

@guysmoilov
Created November 21, 2019 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guysmoilov/714c2e6ad340f9313f8a6877d9505873 to your computer and use it in GitHub Desktop.
Save guysmoilov/714c2e6ad340f9313f8a6877d9505873 to your computer and use it in GitHub Desktop.
List git object sizes
git rev-list --objects --all \
| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
| sed -n 's/^blob //p' \
| sort -nrk2 \
| cut -c 1-12,41-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment