mirror of
https://github.com/git/git.git
synced 2024-11-06 09:13:01 +01:00
git-fetch-script: fix http:// breakage
We were trying to fetch using the merge-head name rather than the merge-head SHA1 that we just got. Now, http:// is broken anyway right now for packing, but this should make it work for nonpacked repositories again.
This commit is contained in:
parent
60ea0fdd7d
commit
9c2b1c0cd8
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ case "$merge_repo" in
|
|||
http://*)
|
||||
head=$(wget -q -O - "$merge_repo/$merge_head") || exit 1
|
||||
echo Fetching "$merge_head" using http
|
||||
git-http-pull -v -a "$merge_head" "$merge_repo/"
|
||||
git-http-pull -v -a "$head" "$merge_repo/"
|
||||
;;
|
||||
rsync://*)
|
||||
rsync -L "$merge_repo/$merge_head" "$TMP_HEAD" || exit 1
|
||||
|
|
Loading…
Reference in a new issue