Skip to content

Files

Latest commit

d150cec · May 21, 2022

History

History

git-rev-list-all-objects-by-size

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 21, 2022
Jan 11, 2022

README.md

git rev-list-all-objects-by-size

List all blobs by size in bytes

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