Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit e9fc64c

Browse files
apenwarrgitster
authored andcommitted
checkout: no progress messages if !isatty(2).
If stderr isn't a tty, we shouldn't be printing incremental progress messages. In particular, this affects 'git checkout -f . >&logfile' unless you provided -q. And git-new-workdir has no way to provide -q. It would probably be better to have progress.c check isatty(2) all the time, but that wouldn't allow things like 'git push --progress' to force progress reporting to on, so I won't try to solve the general case right now. Actual fix suggested by Jeff King. Signed-off-by: Avery Pennarun <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 17a9ac7 commit e9fc64c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/checkout.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ static int reset_tree(struct tree *tree, struct checkout_opts *o, int worktree)
343343
opts.reset = 1;
344344
opts.merge = 1;
345345
opts.fn = oneway_merge;
346-
opts.verbose_update = !o->quiet;
346+
opts.verbose_update = !o->quiet && isatty(2);
347347
opts.src_index = &the_index;
348348
opts.dst_index = &the_index;
349349
parse_tree(tree);
@@ -420,7 +420,7 @@ static int merge_working_tree(struct checkout_opts *opts,
420420
topts.update = 1;
421421
topts.merge = 1;
422422
topts.gently = opts->merge && old->commit;
423-
topts.verbose_update = !opts->quiet;
423+
topts.verbose_update = !opts->quiet && isatty(2);
424424
topts.fn = twoway_merge;
425425
if (opts->overwrite_ignore) {
426426
topts.dir = xcalloc(1, sizeof(*topts.dir));

0 commit comments

Comments
 (0)