Skip to content

Latest commit

 

History

History

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

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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