This series has my circular buffer errors (hopefully) corrected, and the code is a lot cleaner as a bonus. Also, the options are now named --window-memory and pack.windowMemory, and both can take {k,m,g} suffixes. I split out the {k,m,g} parsing code from git_config_int into git_parse_long and git_parse_ulong, so it can be used for command-line arguments as well. Hopefully these will be useful elsewhere. Finally the documentation has been cleaned up a bit and information on the defaults has been added. Patches 1 and 2 are unmodified from last time. [PATCH 1/6] Don't try to delta if target is much smaller than source [PATCH 2/6] Support fetching the memory usage of a delta index [PATCH 3/6] Add functions for parsing integers with size suffixes [PATCH 4/6] Add pack-objects window memory usage limit [PATCH 5/6] Add --window-memory option to git-repack [PATCH 6/6] Add documentation for --window-memory, pack.windowMemory Documentation/config.txt | 6 +++ Documentation/git-pack-objects.txt | 11 ++++++ Documentation/git-repack.txt | 11 ++++++ builtin-pack-objects.c | 52 ++++++++++++++++++++++++++---- cache.h | 3 ++ config.c | 61 +++++++++++++++++++++++++++++------ delta.h | 7 ++++ diff-delta.c | 10 ++++++ git-repack.sh | 3 +- 9 files changed, 145 insertions(+), 19 deletions(-) -bcd - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html