Last active
February 23, 2024 15:12
-
-
Save ksindi/2aa0d5586b6eb3ae3e3847231d825897 to your computer and use it in GitHub Desktop.
Versioned files in human readable format sorted by size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git ls-tree -rz --name-only HEAD -- | xargs -0 du -kh | sort -sh -k 1,1 |
git ls-tree -rz --name-only HEAD -- | xargs -0 du -k | awk '{ sum += $1; } END { print sum; } ' | numfmt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Get the total repo size: