Created
September 4, 2014 18:07
-
-
Save gizmola/369a85ea96836abd3041 to your computer and use it in GitHub Desktop.
Get list of largest files in a git repo from bash
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 master | while read rev; do git ls-tree -lr $rev | cut -c54- | grep -v '^ '; done | sort -u | perl -e ' | |
| while (<>) { | |
| chomp; | |
| @stuff=split("\t"); | |
| $sums{$stuff[1]} += $stuff[0]; | |
| } | |
| "$sums{$_} $_\n" for (keys %sums); | |
| ' | sort -rn >> large_files.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment