From: Junio C Hamano Date: Sat, 21 Apr 2007 00:25:27 +0000 (-0700) Subject: git-clone: fix dumb protocol transport to clone from pack-pruned ref X-Git-Tag: v1.5.1.2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=928c210a;p=git.git git-clone: fix dumb protocol transport to clone from pack-pruned ref This forward-ports a fix from 2986c022 to git-clone. Signed-off-by: Junio C Hamano --- diff --git a/git-clone.sh b/git-clone.sh index 513b574d1..cad5c0c08 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -60,7 +60,7 @@ Perhaps git-update-server-info needs to be run there?" else tname=$name fi - git-http-fetch $v -a -w "$tname" "$name" "$1" || exit 1 + git-http-fetch $v -a -w "$tname" "$sha1" "$1" || exit 1 done <"$clone_tmp/refs" rm -fr "$clone_tmp" http_fetch "$1/HEAD" "$GIT_DIR/REMOTE_HEAD" ||