summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 723c31f)
raw | patch | inline | side by side (parent: 723c31f)
author | Linus Torvalds <torvalds@g5.osdl.org> | |
Tue, 5 Jul 2005 18:38:37 +0000 (11:38 -0700) | ||
committer | Linus Torvalds <torvalds@g5.osdl.org> | |
Tue, 5 Jul 2005 18:38:37 +0000 (11:38 -0700) |
Also, clean it up a lot.
git-fetch-script | patch | blob | history |
diff --git a/git-fetch-script b/git-fetch-script
index fb4a53776ac0f3f5d95e4c4b6a68ab0b3913974c..244fc50d5e16bfdf6f1a490a61631e6dde5f214d 100755 (executable)
--- a/git-fetch-script
+++ b/git-fetch-script
: ${GIT_DIR=.git}
: ${GIT_OBJECT_DIRECTORY="${SHA1_FILE_DIRECTORY-"$GIT_DIR/objects"}"}
+TMP_HEAD="$GIT_DIR/TMP_HEAD"
-download_one () {
- # remote_path="$1" local_file="$2"
- case "$1" in
- http://*)
- wget -q -O "$2" "$1" ;;
- /*)
- test -f "$1" && cat >"$2" "$1" ;;
- *)
- rsync -L "$1" "$2" ;;
- esac
-}
-
-download_objects () {
- # remote_repo="$1" head_sha1="$2"
- case "$1" in
- http://*)
- git-http-pull -a "$2" "$1/"
- ;;
- /*)
- git-local-pull -l -a "$2" "$1/"
- ;;
- *)
- rsync -avz --ignore-existing \
- "$1/objects/." "$GIT_OBJECT_DIRECTORY"/.
- ;;
- esac
-}
-
-echo "Getting remote $merge_name"
-download_one "$merge_repo/$merge_name" "$GIT_DIR/$destination" || exit 1
-
-echo "Getting object database"
-download_objects "$merge_repo" "$(cat "$GIT_DIR/$destination")" || exit 1
+case "$merge_repo" in
+http://*)
+ head=$(wget -q -O - "$merge_repo/$merge_name") || exit 1
+ git-http-pull -a "$head" "$merge_repo"
+ ;;
+rsync://*)
+ rsync -L "$merge_repo/$merge_name" "$TMP_HEAD" || exit 1
+ head=$(git-rev-parse TMP_HEAD)
+ rm -f "$TMP_HEAD"
+ rsync -avz --ignore-existing "$merge_repo/objects/" "$GIT_OBJECT_DIRECTORY/"
+ ;;
+*)
+ head=$(git-fetch-pack "$merge_repo" "$merge_name")
+ ;;
+esac || exit 1
+git-rev-parse --verify "$head" > /dev/null || exit 1
+echo "$head" > "$GIT_DIR/$destination"