diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2008-07-18 16:30:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-19 11:17:43 -0700 |
commit | 3a176c6cde650f8907b2dbafafb72f6375038613 (patch) | |
tree | b1ce068e0396408adb2712bc35a1d2722019ccaa /archive.h | |
parent | 6259ac6628477aa5ebde9bd9e8daaeecca2a74ae (diff) | |
download | git-3a176c6cde650f8907b2dbafafb72f6375038613.tar.gz |
archive: make zip compression level independent from core git
zlib_compression_level is the compression level used for git's object store.
It's 1 by default, which is the fastest setting. This variable is also used
as the default compression level for ZIP archives created by git archive.
For archives, however, zlib's own default of 6 is more appropriate, as it's
favouring small size over speed -- archive creation is not that performance
critical most of the time.
This patch makes git archive independent from git's internal compression
level setting. It affects invocations of git archive without explicitly
specified compression level option, only.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.h')
-rw-r--r-- | archive.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ struct archiver_args { time_t time; const char **pathspec; unsigned int verbose : 1; + int compression_level; }; typedef int (*write_archive_fn_t)(struct archiver_args *); |