Skip to content

Commit 90791e3

Browse files
committed
Merge branch 'sb/repack-in-c' into maint
"git repack --max-pack-size=8g" stopped being parsed correctly when the command was reimplemented in C. * sb/repack-in-c: repack: propagate pack-objects options as strings repack: make parsed string options const-correct repack: fix typo in max-pack-size option
2 parents b4e931d + b861e23 commit 90791e3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

builtin/repack.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
129129
/* variables to be filled by option parsing */
130130
int pack_everything = 0;
131131
int delete_redundant = 0;
132-
char *unpack_unreachable = NULL;
133-
int window = 0, window_memory = 0;
134-
int depth = 0;
135-
int max_pack_size = 0;
132+
const char *unpack_unreachable = NULL;
133+
const char *window = NULL, *window_memory = NULL;
134+
const char *depth = NULL;
135+
const char *max_pack_size = NULL;
136136
int no_reuse_delta = 0, no_reuse_object = 0;
137137
int no_update_server_info = 0;
138138
int quiet = 0;
@@ -157,13 +157,13 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
157157
N_("pass --local to git-pack-objects")),
158158
OPT_STRING(0, "unpack-unreachable", &unpack_unreachable, N_("approxidate"),
159159
N_("with -A, do not loosen objects older than this")),
160-
OPT_INTEGER(0, "window", &window,
160+
OPT_STRING(0, "window", &window, N_("n"),
161161
N_("size of the window used for delta compression")),
162-
OPT_INTEGER(0, "window-memory", &window_memory,
162+
OPT_STRING(0, "window-memory", &window_memory, N_("bytes"),
163163
N_("same as the above, but limit memory size instead of entries count")),
164-
OPT_INTEGER(0, "depth", &depth,
164+
OPT_STRING(0, "depth", &depth, N_("n"),
165165
N_("limits the maximum delta depth")),
166-
OPT_INTEGER(0, "max-pack-size", &max_pack_size,
166+
OPT_STRING(0, "max-pack-size", &max_pack_size, N_("bytes"),
167167
N_("maximum size of each packfile")),
168168
OPT_END()
169169
};
@@ -185,13 +185,13 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
185185
argv_array_push(&cmd_args, "--all");
186186
argv_array_push(&cmd_args, "--reflog");
187187
if (window)
188-
argv_array_pushf(&cmd_args, "--window=%u", window);
188+
argv_array_pushf(&cmd_args, "--window=%s", window);
189189
if (window_memory)
190-
argv_array_pushf(&cmd_args, "--window-memory=%u", window_memory);
190+
argv_array_pushf(&cmd_args, "--window-memory=%s", window_memory);
191191
if (depth)
192-
argv_array_pushf(&cmd_args, "--depth=%u", depth);
192+
argv_array_pushf(&cmd_args, "--depth=%s", depth);
193193
if (max_pack_size)
194-
argv_array_pushf(&cmd_args, "--max_pack_size=%u", max_pack_size);
194+
argv_array_pushf(&cmd_args, "--max-pack-size=%s", max_pack_size);
195195
if (no_reuse_delta)
196196
argv_array_pushf(&cmd_args, "--no-reuse-delta");
197197
if (no_reuse_object)

0 commit comments

Comments
 (0)