Last active
March 8, 2024 01:39
-
-
Save meee1/4ccb62054c1e1c62108578b49322e5e5 to your computer and use it in GitHub Desktop.
get large repo directorys
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
| repo forall -c "git count-objects -vH | grep 'GiB' && pwd" | |
| repo forall -c "git count-objects -vH | grep 'MiB' && pwd" | |
| repo forall -c "git count-objects -v | grep size-pack | tr -d '\012\015' && pwd " | sort -nk2 | |
| repo forall -c "du .git -d 0 -L | tr -d '\012\015' && pwd " | sort -nk1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment