Skip to content

Instantly share code, notes, and snippets.

@Enweave
Created August 22, 2016 09:19
Show Gist options
  • Save Enweave/508fe8ea9cd322f0fb87556df7f49c3e to your computer and use it in GitHub Desktop.
Save Enweave/508fe8ea9cd322f0fb87556df7f49c3e to your computer and use it in GitHub Desktop.
Get git repository disk usage.
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