Skip to content

Commit eddad36

Browse files
ttaylorrgitster
authored andcommitted
builtin/repack.c: pass "cruft_expiration" to write_cruft_pack
`builtin/repack.c`'s `write_cruft_pack()` is used to generate the cruft pack when `--cruft` is supplied. It uses a static variable "cruft_expiration" which is filled in by option parsing. A future patch will add an `--expire-to` option which allows `git repack` to write a cruft pack containing the pruned objects out to a separate repository. In order to implement this functionality, some callers will have to pass a value for `cruft_expiration` different than the one filled out by option parsing. Prepare for this by teaching `write_cruft_pack` to take a "cruft_expiration" parameter, instead of reading a single static variable. The (sole) existing caller of `write_cruft_pack()` will pass the value for "cruft_expiration" filled in by option parsing, retaining existing behavior. This means that we can make the variable local to `cmd_repack()`, and eliminate the static declaration. Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4e7b65b commit eddad36

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

builtin/repack.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ static int write_bitmaps = -1;
3232
static int use_delta_islands;
3333
static int run_update_server_info = 1;
3434
static char *packdir, *packtmp_name, *packtmp;
35-
static char *cruft_expiration;
3635

3736
static const char *const git_repack_usage[] = {
3837
N_("git repack [<options>]"),
@@ -664,6 +663,7 @@ static int write_midx_included_packs(struct string_list *include,
664663

665664
static int write_cruft_pack(const struct pack_objects_args *args,
666665
const char *pack_prefix,
666+
const char *cruft_expiration,
667667
struct string_list *names,
668668
struct string_list *existing_packs,
669669
struct string_list *existing_kept_packs)
@@ -746,6 +746,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
746746
struct pack_objects_args cruft_po_args = {NULL};
747747
int geometric_factor = 0;
748748
int write_midx = 0;
749+
const char *cruft_expiration = NULL;
749750

750751
struct option builtin_repack_options[] = {
751752
OPT_BIT('a', NULL, &pack_everything,
@@ -985,7 +986,8 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
985986
cruft_po_args.local = po_args.local;
986987
cruft_po_args.quiet = po_args.quiet;
987988

988-
ret = write_cruft_pack(&cruft_po_args, pack_prefix, &names,
989+
ret = write_cruft_pack(&cruft_po_args, pack_prefix,
990+
cruft_expiration, &names,
989991
&existing_nonkept_packs,
990992
&existing_kept_packs);
991993
if (ret)

0 commit comments

Comments
 (0)