summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: deca7e8)
raw | patch | inline | side by side (parent: deca7e8)
author | Junio C Hamano <junkio@cox.net> | |
Mon, 26 Sep 2005 02:49:49 +0000 (19:49 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 27 Sep 2005 01:04:17 +0000 (18:04 -0700) |
Only the "Fetching ... using http" was leaking to stdout.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-fetch.sh | patch | blob | history |
diff --git a/git-fetch.sh b/git-fetch.sh
index 822b4cd982c46feaeed9b94b16973b63a0c567c1..e4a6a68057edf0ff8cd4067f334ddf1eed211e44 100755 (executable)
--- a/git-fetch.sh
+++ b/git-fetch.sh
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://*)