Created
September 5, 2025 23:07
-
-
Save akobashikawa/27c3be74f1ecebebbe7df4376f938d5d to your computer and use it in GitHub Desktop.
Lista los archivos grandes que haya en el historial
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 rev-list --all --objects | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | awk '/^blob/ { print $3, $4 }' | sort -n -r | head -n 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment