Changes between Version 69 and Version 70 of UsingGitWithWebKit


Ignore:
Timestamp:
Sep 6, 2011 10:12:46 AM (13 years ago)
Author:
davidbarr@chromium.org
Comment:

Add details about tuning aggressive gc

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v69 v70  
    226226git config pack.windowMemory 256m
    227227
     228# The following git-config commands achieve excellent compression without wasting effort
     229git config --local pack.compression 9
     230git config --local pack.aggressiveWindow 70
     231
    228232git gc --aggressive
    229 }}}
     233
     234# To avoid repacking ancient history, keep the pack resulting from and aggressive gc
     235touch $(ls .git/objects/pack/pack-*.idx|sed s/idx/keep/)
     236}}}