Changes between Initial Version and Version 1 of Ticket #3630, comment 1


Ignore:
Timestamp:
Aug 17, 2020, 6:14:20 PM (5 years ago)
Author:
Tom Goddard

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3630, comment 1

    initial v1  
    11Here 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.
    22
     3
     4{{{
    35git rev-list --objects --all \
    46| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
     
    79| cut -c 1-12,41- \
    810| $(command -v gnumfmt || echo numfmt) --field=2 --padding=10 --round=nearest > git-sizes
     11}}}