On Sat, Dec 05, 2009 at 07:00:23PM -0500, Alex Vandiver wrote: > @@ -84,9 +84,12 @@ static int opt_parse_track(const struct option *opt, const char *arg, int not) > static int fetch_remote(const char *name) > { > const char *argv[] = { "fetch", name, NULL, NULL }; > - if (verbose) { > + if (verbosity > 0) { > argv[1] = "-v"; > argv[2] = name; > + } else if (verbosity < 0) { > + argv[1] = "-q"; > + argv[2] = name; > } > printf("Updating %s\n", name); Should --quiet also affect this "Updating %s" line? Actually, I have often wished for a way to shut up this line but keep fetch at its normal verbosity. Fetch very sanely says nothing if there is nothing to update, but you still get this "Updating" junk line, even if nothing is transferred. But that would probably need an extra "--quiet-remote" option to handle separately from what we pass to fetch. -Peff -- 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