Git alias:
rev-list-all-objects-by-size = !"git rev-list --all --objects | awk '{print $1}'| git cat-file --batch-check | fgrep blob | sort -k3nr"
Example:
git rev-list-all-objects-by-size
By CodeGnome