rm vendor

pull/15/head
Miguel Mota 6 years ago
parent 08ae10d232
commit 3c5704b045

1
.gitignore vendored

@ -21,3 +21,4 @@ stage
*.snap
*bfg-report*
*bfg-report
vendor

@ -0,0 +1,10 @@
#!/bin/bash
# To use this on Mac you need to brew install coreutils and then replace cut with gcut and numfmt with gnumfmt
git rev-list --objects --all \
| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
| awk '/^blob/ {print substr($0,6)}' \
| sort --numeric-sort --key=2 \
| gcut --complement --characters=13-40 \
| gnumfmt --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
Loading…
Cancel
Save