Dave Jones <davej@xxxxxxxxxxxxxxxxx> writes: > The server I run various git snapshots on recently got upgraded to git 1.5.6, > ... > I could run the clone with 2>/dev/null, but I'd really like to get > mail when something breaks instead of it being totally silent. > > I'm assuming this was an unintentional side-effect of some other recent change? Yeah, I would assume so, too ;-) Daniel, is this enough? From re-reading the scripted version of git-clone, it appears that we *might* need to squelch no-progress if the stdout is not tty; I do not offhand if you got that right when you rewrote this in C. transport.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/transport.c b/transport.c index 3ff8519..b2f0d8a 100644 --- a/transport.c +++ b/transport.c @@ -645,7 +645,8 @@ static int fetch_refs_via_pack(struct transport *transport, args.lock_pack = 1; args.use_thin_pack = data->thin; args.include_tag = data->followtags; - args.verbose = transport->verbose > 0; + args.verbose = (transport->verbose > 0); + args.quiet = (transport->verbose < 0); args.depth = data->depth; for (i = 0; i < nr_heads; i++) -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html