From: Junio C Hamano Date: Fri, 18 Oct 2013 20:49:51 +0000 (-0700) Subject: Merge branch 'jk/clone-progress-to-stderr' X-Git-Tag: v1.8.5-rc0~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f94a84c408babe92f951050a69e23df537302e54;p=thirdparty%2Fgit.git Merge branch 'jk/clone-progress-to-stderr' Some progress and diagnostic messages from "git clone" were incorrectly sent to the standard output stream, not to the standard error stream. * jk/clone-progress-to-stderr: clone: always set transport options clone: treat "checking connectivity" like other progress clone: send diagnostic messages to stderr --- f94a84c408babe92f951050a69e23df537302e54 diff --cc builtin/clone.c index b708c115a3,63f298be9c..874e0fd0b6 --- a/builtin/clone.c +++ b/builtin/clone.c @@@ -555,8 -556,8 +555,8 @@@ static void update_remote_refs(const st if (check_everything_connected_with_transport(iterate_ref_map, 0, &rm, transport)) die(_("remote did not send all necessary objects")); - if (0 <= option_verbosity) - printf(_("done.\n")); + if (transport->progress) - fprintf(stderr, _("done\n")); ++ fprintf(stderr, _("done.\n")); } if (refs) {