2005-06-23 01:49:43 +00:00
|
|
|
#!/bin/sh
|
2005-07-06 20:04:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2005, Linus Torvalds
|
|
|
|
# Copyright (c) 2005, Junio C Hamano
|
|
|
|
#
|
|
|
|
# Clone a repository into a different directory that does not yet exist.
|
|
|
|
|
2005-09-13 02:47:07 +00:00
|
|
|
# See git-sh-setup why.
|
|
|
|
unset CDPATH
|
|
|
|
|
2005-07-06 20:04:21 +00:00
|
|
|
usage() {
|
2005-09-27 00:17:09 +00:00
|
|
|
echo >&2 "* git clone [-l [-s]] [-q] [-u <upload-pack>] [-n] <repo> <dir>"
|
2005-07-06 20:04:21 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2005-07-08 22:46:33 +00:00
|
|
|
get_repo_base() {
|
|
|
|
(cd "$1" && (cd .git ; pwd)) 2> /dev/null
|
|
|
|
}
|
|
|
|
|
2005-09-05 07:47:39 +00:00
|
|
|
if [ -n "$GIT_SSL_NO_VERIFY" ]; then
|
|
|
|
curl_extra_args="-k"
|
|
|
|
fi
|
|
|
|
|
|
|
|
http_fetch () {
|
|
|
|
# $1 = Remote, $2 = Local
|
2005-11-10 13:12:19 +00:00
|
|
|
curl -nsfL $curl_extra_args "$1" >"$2"
|
2005-09-05 07:47:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
clone_dumb_http () {
|
|
|
|
# $1 - remote, $2 - local
|
|
|
|
cd "$2" &&
|
|
|
|
clone_tmp='.git/clone-tmp' &&
|
|
|
|
mkdir -p "$clone_tmp" || exit 1
|
|
|
|
http_fetch "$1/info/refs" "$clone_tmp/refs" &&
|
|
|
|
http_fetch "$1/objects/info/packs" "$clone_tmp/packs" || {
|
|
|
|
echo >&2 "Cannot get remote repository information.
|
|
|
|
Perhaps git-update-server-info needs to be run there?"
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
while read type name
|
|
|
|
do
|
|
|
|
case "$type" in
|
|
|
|
P) ;;
|
|
|
|
*) continue ;;
|
|
|
|
esac &&
|
|
|
|
|
|
|
|
idx=`expr "$name" : '\(.*\)\.pack'`.idx
|
|
|
|
http_fetch "$1/objects/pack/$name" ".git/objects/pack/$name" &&
|
|
|
|
http_fetch "$1/objects/pack/$idx" ".git/objects/pack/$idx" &&
|
|
|
|
git-verify-pack ".git/objects/pack/$idx" || exit 1
|
|
|
|
done <"$clone_tmp/packs"
|
|
|
|
|
|
|
|
while read sha1 refname
|
|
|
|
do
|
|
|
|
name=`expr "$refname" : 'refs/\(.*\)'` &&
|
2005-10-18 04:47:06 +00:00
|
|
|
case "$name" in
|
|
|
|
*^*) ;;
|
|
|
|
*)
|
|
|
|
git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1
|
|
|
|
esac
|
2005-09-05 07:47:39 +00:00
|
|
|
done <"$clone_tmp/refs"
|
|
|
|
rm -fr "$clone_tmp"
|
|
|
|
}
|
|
|
|
|
2005-07-09 17:52:35 +00:00
|
|
|
quiet=
|
2005-07-06 20:04:21 +00:00
|
|
|
use_local=no
|
2005-08-15 00:25:57 +00:00
|
|
|
local_shared=no
|
2005-09-27 00:17:09 +00:00
|
|
|
no_checkout=
|
2005-07-14 03:25:54 +00:00
|
|
|
upload_pack=
|
2005-07-06 20:04:21 +00:00
|
|
|
while
|
|
|
|
case "$#,$1" in
|
|
|
|
0,*) break ;;
|
2005-09-27 00:17:09 +00:00
|
|
|
*,-n) no_checkout=yes ;;
|
2005-07-23 02:11:22 +00:00
|
|
|
*,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) use_local=yes ;;
|
2005-08-15 00:25:57 +00:00
|
|
|
*,-s|*,--s|*,--sh|*,--sha|*,--shar|*,--share|*,--shared)
|
|
|
|
local_shared=yes ;;
|
2005-07-09 17:52:35 +00:00
|
|
|
*,-q|*,--quiet) quiet=-q ;;
|
2005-07-23 02:11:22 +00:00
|
|
|
1,-u|1,--upload-pack) usage ;;
|
2005-07-14 03:25:54 +00:00
|
|
|
*,-u|*,--upload-pack)
|
|
|
|
shift
|
2005-07-23 02:11:22 +00:00
|
|
|
upload_pack="--exec=$1" ;;
|
2005-07-06 20:04:21 +00:00
|
|
|
*,-*) usage ;;
|
|
|
|
*) break ;;
|
|
|
|
esac
|
|
|
|
do
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2005-07-08 22:46:33 +00:00
|
|
|
# Turn the source into an absolute path if
|
|
|
|
# it is local
|
2005-06-23 01:49:43 +00:00
|
|
|
repo="$1"
|
2005-07-08 22:46:33 +00:00
|
|
|
local=no
|
|
|
|
if base=$(get_repo_base "$repo"); then
|
|
|
|
repo="$base"
|
|
|
|
local=yes
|
|
|
|
fi
|
|
|
|
|
2005-06-23 01:49:43 +00:00
|
|
|
dir="$2"
|
2005-11-10 11:58:08 +00:00
|
|
|
# Try using "humanish" part of source repo if user didn't specify one
|
|
|
|
[ -z "$dir" ] && dir=$(echo "$repo" | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*/||g')
|
2005-11-10 11:58:08 +00:00
|
|
|
[ -e "$dir" ] && $(echo "$dir already exists."; usage)
|
|
|
|
mkdir -p "$dir" &&
|
2005-07-06 20:04:21 +00:00
|
|
|
D=$(
|
|
|
|
(cd "$dir" && git-init-db && pwd)
|
|
|
|
) &&
|
|
|
|
test -d "$D" || usage
|
|
|
|
|
|
|
|
# We do local magic only when the user tells us to.
|
2005-07-08 22:46:33 +00:00
|
|
|
case "$local,$use_local" in
|
|
|
|
yes,yes)
|
2005-07-06 20:04:21 +00:00
|
|
|
( cd "$repo/objects" ) || {
|
2005-07-11 20:30:54 +00:00
|
|
|
echo >&2 "-l flag seen but $repo is not local."
|
|
|
|
exit 1
|
2005-07-06 20:04:21 +00:00
|
|
|
}
|
|
|
|
|
2005-08-15 00:25:57 +00:00
|
|
|
case "$local_shared" in
|
|
|
|
no)
|
|
|
|
# See if we can hardlink and drop "l" if not.
|
|
|
|
sample_file=$(cd "$repo" && \
|
|
|
|
find objects -type f -print | sed -e 1q)
|
2005-07-06 20:04:21 +00:00
|
|
|
|
2005-08-15 00:25:57 +00:00
|
|
|
# objects directory should not be empty since we are cloning!
|
|
|
|
test -f "$repo/$sample_file" || exit
|
2005-07-06 20:04:21 +00:00
|
|
|
|
2005-08-15 00:25:57 +00:00
|
|
|
l=
|
|
|
|
if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev/null
|
|
|
|
then
|
|
|
|
l=l
|
|
|
|
fi &&
|
|
|
|
rm -f "$D/.git/objects/sample" &&
|
|
|
|
cd "$repo" &&
|
2005-11-05 19:44:35 +00:00
|
|
|
find objects -depth -print | cpio -puamd$l "$D/.git/" || exit 1
|
2005-08-15 00:25:57 +00:00
|
|
|
;;
|
|
|
|
yes)
|
|
|
|
mkdir -p "$D/.git/objects/info"
|
2005-08-17 22:18:41 +00:00
|
|
|
{
|
|
|
|
test -f "$repo/objects/info/alternates" &&
|
|
|
|
cat "$repo/objects/info/alternates";
|
|
|
|
echo "$repo/objects"
|
|
|
|
} >"$D/.git/objects/info/alternates"
|
2005-08-15 00:25:57 +00:00
|
|
|
;;
|
|
|
|
esac
|
2005-07-06 20:04:21 +00:00
|
|
|
|
|
|
|
# Make a duplicate of refs and HEAD pointer
|
|
|
|
HEAD=
|
|
|
|
if test -f "$repo/HEAD"
|
|
|
|
then
|
|
|
|
HEAD=HEAD
|
|
|
|
fi
|
2005-09-23 17:41:40 +00:00
|
|
|
(cd "$repo" && tar cf - refs $HEAD) |
|
|
|
|
(cd "$D/.git" && tar xf -) || exit 1
|
2005-07-09 00:07:12 +00:00
|
|
|
;;
|
|
|
|
*)
|
2005-07-23 02:11:22 +00:00
|
|
|
case "$repo" in
|
|
|
|
rsync://*)
|
2005-09-17 18:56:41 +00:00
|
|
|
rsync $quiet -av --ignore-existing \
|
|
|
|
--exclude info "$repo/objects/" "$D/.git/objects/" &&
|
|
|
|
rsync $quiet -av --ignore-existing \
|
|
|
|
--exclude info "$repo/refs/" "$D/.git/refs/" || exit
|
|
|
|
|
|
|
|
# Look at objects/info/alternates for rsync -- http will
|
|
|
|
# support it natively and git native ones will do it on the
|
|
|
|
# remote end. Not having that file is not a crime.
|
2005-09-20 06:52:33 +00:00
|
|
|
rsync -q "$repo/objects/info/alternates" \
|
|
|
|
"$D/.git/TMP_ALT" 2>/dev/null ||
|
2005-09-17 18:56:41 +00:00
|
|
|
rm -f "$D/.git/TMP_ALT"
|
|
|
|
if test -f "$D/.git/TMP_ALT"
|
|
|
|
then
|
2005-11-11 05:19:04 +00:00
|
|
|
( cd "$D" &&
|
2005-09-17 18:56:41 +00:00
|
|
|
. git-parse-remote &&
|
|
|
|
resolve_alternates "$repo" <"./.git/TMP_ALT" ) |
|
|
|
|
while read alt
|
|
|
|
do
|
|
|
|
case "$alt" in 'bad alternate: '*) die "$alt";; esac
|
|
|
|
case "$quiet" in
|
|
|
|
'') echo >&2 "Getting alternate: $alt" ;;
|
|
|
|
esac
|
|
|
|
rsync $quiet -av --ignore-existing \
|
|
|
|
--exclude info "$alt" "$D/.git/objects" || exit
|
|
|
|
done
|
|
|
|
rm -f "$D/.git/TMP_ALT"
|
|
|
|
fi
|
2005-07-23 02:11:22 +00:00
|
|
|
;;
|
|
|
|
http://*)
|
2005-09-05 07:47:39 +00:00
|
|
|
clone_dumb_http "$repo" "$D"
|
2005-07-23 02:11:22 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cd "$D" && case "$upload_pack" in
|
|
|
|
'') git-clone-pack $quiet "$repo" ;;
|
|
|
|
*) git-clone-pack $quiet "$upload_pack" "$repo" ;;
|
|
|
|
esac
|
|
|
|
;;
|
2005-07-14 03:25:54 +00:00
|
|
|
esac
|
2005-07-09 00:07:12 +00:00
|
|
|
;;
|
|
|
|
esac
|
2005-07-23 02:11:22 +00:00
|
|
|
|
2005-11-11 05:19:04 +00:00
|
|
|
cd "$D" || exit
|
2005-09-27 00:17:09 +00:00
|
|
|
|
|
|
|
if test -f ".git/HEAD"
|
|
|
|
then
|
2005-11-02 06:19:36 +00:00
|
|
|
head_points_at=`git-symbolic-ref HEAD`
|
|
|
|
case "$head_points_at" in
|
|
|
|
refs/heads/*)
|
|
|
|
head_points_at=`expr "$head_points_at" : 'refs/heads/\(.*\)'`
|
|
|
|
mkdir -p .git/remotes &&
|
|
|
|
echo >.git/remotes/origin \
|
|
|
|
"URL: $repo
|
2005-11-06 08:52:57 +00:00
|
|
|
Pull: $head_points_at:origin" &&
|
|
|
|
cp ".git/refs/heads/$head_points_at" .git/refs/heads/origin &&
|
|
|
|
find .git/refs/heads -type f -print |
|
|
|
|
while read ref
|
|
|
|
do
|
|
|
|
head=`expr "$ref" : '.git/refs/heads/\(.*\)'` &&
|
|
|
|
test "$head_points_at" = "$head" ||
|
|
|
|
test "origin" = "$head" ||
|
|
|
|
echo "Pull: ${head}:${head}"
|
|
|
|
done >>.git/remotes/origin
|
2005-11-02 06:19:36 +00:00
|
|
|
esac
|
|
|
|
|
2005-09-27 00:17:09 +00:00
|
|
|
case "$no_checkout" in
|
|
|
|
'')
|
|
|
|
git checkout
|
|
|
|
esac
|
|
|
|
fi
|