зеркало из https://github.com/microsoft/git.git
prune-packed: only show progress when stderr is a tty
This matches the behavior of other git programs, and helps keep cruft out of things like cron job output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
aa8dc9679a
Коммит
1ddf5efc66
|
@ -71,7 +71,7 @@ void prune_packed_objects(int opts)
|
|||
|
||||
int cmd_prune_packed(int argc, const char **argv, const char *prefix)
|
||||
{
|
||||
int opts = VERBOSE;
|
||||
int opts = isatty(2) ? VERBOSE : 0;
|
||||
const struct option prune_packed_options[] = {
|
||||
OPT_BIT('n', "dry-run", &opts, "dry run", DRY_RUN),
|
||||
OPT_NEGBIT('q', "quiet", &opts, "be quiet", VERBOSE),
|
||||
|
|
Загрузка…
Ссылка в новой задаче