From 617669da4f80ecf05db7ef1976b56260e2124cc2 Mon Sep 17 00:00:00 2001 From: Julian Phillips Date: Tue, 13 Feb 2007 01:21:41 +0000 Subject: 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 --- git-fetch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-fetch.sh') 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 -- cgit v1.2.1