summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4df1e79)
raw | patch | inline | side by side (parent: 4df1e79)
author | Junio C Hamano <junkio@cox.net> | |
Fri, 6 May 2005 08:12:04 +0000 (01:12 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 6 May 2005 08:12:04 +0000 (01:12 -0700) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-pull-script | patch | blob | history |
diff --git a/git-pull-script b/git-pull-script
index d35a4a1b23bb8af7a13cb07937a0d667ee75fde4..78d2f3df346b7b8d24b3dbe28a244b8d0ba141e7 100755 (executable)
--- a/git-pull-script
+++ b/git-pull-script
#!/bin/sh
#
-# use "$1" or something in a real script, this
-# just hard-codes it.
-#
merge_repo=$1
merge_name=${2:-HEAD}
-echo "Getting object database"
-rsync -avz --ignore-existing $merge_repo/objects/. ${SHA1_FILE_DIRECTORY:-.git/objects}/.
+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/." \
+ ${SHA_FILE_DIRECTORY:-.git/objects}/.
+ ;;
+ esac
+}
echo "Getting remote $merge_name"
-rsync -L $merge_repo/$merge_name .git/MERGE_HEAD || exit 1
+download_one "$merge_repo/$merge_name" .git/MERGE_HEAD
+
+echo "Getting object database"
+download_objects "$merge_repo" "$(cat .git/MERGE_HEAD)"
git-resolve-script "$(cat .git/HEAD)" "$(cat .git/MERGE_HEAD)" "$merge_repo"