From: Julian Phillips Date: Tue, 13 Feb 2007 01:21:41 +0000 (+0000) Subject: Use stdin reflist passing in git-fetch.sh X-Git-Tag: v1.5.1-rc1~30^2~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=617669da4f80ecf05db7ef1976b56260e2124cc2;p=git.git Use stdin reflist passing in git-fetch.sh Use the new stdin reflist passing mechanism for the call to fetch--tool parse-reflist, allowing passing of more than ~128K of reflist data. Signed-off-by: Julian Phillips Signed-off-by: Junio C Hamano --- diff --git a/git-fetch.sh b/git-fetch.sh index 3bed4091a..80f63c85f 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -156,7 +156,7 @@ fi fetch_native () { - eval=$(git-fetch--tool parse-reflist "$1") + eval=$(echo "$1" | git-fetch--tool parse-reflist "-") eval "$eval" ( : subshell because we muck with IFS