projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9533991
)
Use stdin reflist passing in git-fetch.sh
author
Julian Phillips
<jp3@quantumfyre.co.uk>
Tue, 13 Feb 2007 01:21:41 +0000
(
01:21
+0000)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 14 Feb 2007 05:43:53 +0000
(21:43 -0800)
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 <julian@quantumfyre.co.uk>
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 3bed4091a3826909878938239970a5d947c70d2c..80f63c85f04f9adafa5294f29ebb11b5b9193254 100755
(executable)
--- 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