From: Junio C Hamano Date: Mon, 26 Sep 2005 02:49:49 +0000 (-0700) Subject: git-fetch: send informational output to >&2 consistently. X-Git-Tag: v0.99.8~49 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0b7a9fc971712308712fedbba404f7b448e37d45;p=git.git git-fetch: send informational output to >&2 consistently. Only the "Fetching ... using http" was leaking to stdout. Signed-off-by: Junio C Hamano --- diff --git a/git-fetch.sh b/git-fetch.sh index 822b4cd98..e4a6a6805 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -178,7 +178,7 @@ do head=$(curl -nsf $curl_extra_args "$remote/$remote_name") && expr "$head" : "$_x40\$" >/dev/null || die "Failed to fetch $remote_name from $remote" - echo Fetching "$remote_name from $remote" using http + echo >&2 Fetching "$remote_name from $remote" using http git-http-fetch -v -a "$head" "$remote/" || exit ;; rsync://*)