Changes between Version 69 and Version 70 of UsingGitWithWebKit
- Timestamp:
- Sep 6, 2011, 10:12:46 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v69 v70 226 226 git config pack.windowMemory 256m 227 227 228 # The following git-config commands achieve excellent compression without wasting effort 229 git config --local pack.compression 9 230 git config --local pack.aggressiveWindow 70 231 228 232 git gc --aggressive 229 }}} 233 234 # To avoid repacking ancient history, keep the pack resulting from and aggressive gc 235 touch $(ls .git/objects/pack/pack-*.idx|sed s/idx/keep/) 236 }}}