]> git.ipfire.org Git - thirdparty/git.git/commitdiff
maintenance: force progress/no-quiet to children
authorDerrick Stolee <stolee@gmail.com>
Mon, 24 Mar 2025 00:51:50 +0000 (00:51 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 24 Mar 2025 06:06:01 +0000 (23:06 -0700)
The --no-quiet option for 'git maintenance run' is supposed to indicate
that progress should happen even while ignoring the value of isatty(2).
However, Git implicitly asks child processes to check isatty(2) since
these arguments are not passed through.

The pass through of --no-quiet will be useful in a test in the next
change.

Signed-off-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/gc.c

index 99431fd46744cd223a1c26e4edff0de010de2e0b..6672f165bdab16cf2eb888d0d03aece3e24a04fa 100644 (file)
@@ -1029,6 +1029,8 @@ static int run_write_commit_graph(struct maintenance_run_opts *opts)
 
        if (opts->quiet)
                strvec_push(&child.args, "--no-progress");
+       else
+               strvec_push(&child.args, "--progress");
 
        return !!run_command(&child);
 }
@@ -1185,6 +1187,8 @@ static int pack_loose(struct maintenance_run_opts *opts)
        strvec_push(&pack_proc.args, "pack-objects");
        if (opts->quiet)
                strvec_push(&pack_proc.args, "--quiet");
+       else
+               strvec_push(&pack_proc.args, "--no-quiet");
        strvec_pushf(&pack_proc.args, "%s/pack/loose", r->objects->odb->path);
 
        pack_proc.in = -1;
@@ -1263,6 +1267,8 @@ static int multi_pack_index_write(struct maintenance_run_opts *opts)
 
        if (opts->quiet)
                strvec_push(&child.args, "--no-progress");
+       else
+               strvec_push(&child.args, "--progress");
 
        if (run_command(&child))
                return error(_("failed to write multi-pack-index"));
@@ -1279,6 +1285,8 @@ static int multi_pack_index_expire(struct maintenance_run_opts *opts)
 
        if (opts->quiet)
                strvec_push(&child.args, "--no-progress");
+       else
+               strvec_push(&child.args, "--progress");
 
        if (run_command(&child))
                return error(_("'git multi-pack-index expire' failed"));
@@ -1335,6 +1343,8 @@ static int multi_pack_index_repack(struct maintenance_run_opts *opts)
 
        if (opts->quiet)
                strvec_push(&child.args, "--no-progress");
+       else
+               strvec_push(&child.args, "--progress");
 
        strvec_pushf(&child.args, "--batch-size=%"PRIuMAX,
                                  (uintmax_t)get_auto_pack_size());