diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-25 19:49:49 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-26 18:04:17 -0700 |
commit | 0b7a9fc971712308712fedbba404f7b448e37d45 (patch) | |
tree | c648272a6d074553403faa862880c49ca1d2f46e /git-fetch.sh | |
parent | deca7e8c591608c9ffd0bf0aaf10b379da9f6d6e (diff) | |
download | git-0b7a9fc971712308712fedbba404f7b448e37d45.tar.gz git-0b7a9fc971712308712fedbba404f7b448e37d45.tar.xz |
git-fetch: send informational output to >&2 consistently.
Only the "Fetching ... using http" was leaking to stdout.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-x | git-fetch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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://*) |