Skip to content

Commit

Permalink
Work around git-http-pull breakage in git-fetch-script
Browse files Browse the repository at this point in the history
Need to add a final slash.  And make it verbose by default, since it's
so slow that otherwise people will think it's died.
  • Loading branch information
Linus Torvalds committed Jul 5, 2005
1 parent 0a623e7 commit f03f2ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion git-fetch-script
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ TMP_HEAD="$GIT_DIR/TMP_HEAD"
case "$merge_repo" in
http://*)
head=$(wget -q -O - "$merge_repo/$merge_name") || exit 1
git-http-pull -a "$head" "$merge_repo"
echo Fetching $head using http
git-http-pull -v -a "$head" "$merge_repo/"
;;
rsync://*)
rsync -L "$merge_repo/$merge_name" "$TMP_HEAD" || exit 1
Expand Down

0 comments on commit f03f2ba

Please sign in to comment.