Skip to content

Instantly share code, notes, and snippets.

@dpaluy
Last active September 28, 2019 18:25
Show Gist options
  • Select an option

  • Save dpaluy/100bba223c37e6980768f3fa9c4ceda4 to your computer and use it in GitHub Desktop.

Select an option

Save dpaluy/100bba223c37e6980768f3fa9c4ceda4 to your computer and use it in GitHub Desktop.
This shell script displays all blob objects in the repository, sorted from smallest to largest.
git rev-list --objects --all \
| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
| sed -n 's/^blob //p' \
| sort --numeric-sort --key=2 \
| cut -c 1-12,41- \
| $(command -v gnumfmt || echo 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