Changes between Initial Version and Version 1 of Ticket #3630, comment 1
- Timestamp:
- Aug 17, 2020, 6:14:20 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3630, comment 1
initial v1 1 1 Here is the one-liner to list the sizes of all files in the git history (needs brew install coreutils on Mac for gnumfmt command). I've attached the output for the ChimeraX repository. 2 2 3 4 {{{ 3 5 git rev-list --objects --all \ 4 6 | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \ … … 7 9 | cut -c 1-12,41- \ 8 10 | $(command -v gnumfmt || echo numfmt) --field=2 --padding=10 --round=nearest > git-sizes 11 }}}