Created
August 22, 2016 09:19
-
-
Save Enweave/508fe8ea9cd322f0fb87556df7f49c3e to your computer and use it in GitHub Desktop.
Get git repository disk usage.
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-files | while read file ; do du "$file" ; done | awk '{i+=$1} END {print i/1024}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment