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() {
|
2006-01-23 01:24:22 +00:00
|
|
|
echo >&2 "Usage: $0 [--bare] [-l [-s]] [-q] [-u <upload-pack>] [-o <name>] [-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
|
2005-12-23 00:01:46 +00:00
|
|
|
http_fetch "$1/info/refs" "$clone_tmp/refs" || {
|
2005-09-05 07:47:39 +00:00
|
|
|
echo >&2 "Cannot get remote repository information.
|
|
|
|
Perhaps git-update-server-info needs to be run there?"
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
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=
|
2006-01-23 01:24:22 +00:00
|
|
|
bare=
|
2005-12-22 22:37:24 +00:00
|
|
|
origin=origin
|
2006-01-23 01:28:49 +00:00
|
|
|
origin_override=
|
2005-07-06 20:04:21 +00:00
|
|
|
while
|
|
|
|
case "$#,$1" in
|
|
|
|
0,*) break ;;
|
2006-01-15 00:00:32 +00:00
|
|
|
*,-n|*,--no|*,--no-|*,--no-c|*,--no-ch|*,--no-che|*,--no-chec|\
|
|
|
|
*,--no-check|*,--no-checko|*,--no-checkou|*,--no-checkout)
|
|
|
|
no_checkout=yes ;;
|
2006-01-23 01:24:22 +00:00
|
|
|
*,--na|*,--nak|*,--nake|*,--naked|\
|
|
|
|
*,-b|*,--b|*,--ba|*,--bar|*,--bare) bare=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)
|
2005-11-29 06:20:49 +00:00
|
|
|
local_shared=yes; use_local=yes ;;
|
2005-07-09 17:52:35 +00:00
|
|
|
*,-q|*,--quiet) quiet=-q ;;
|
2005-12-22 22:37:24 +00:00
|
|
|
1,-o) usage;;
|
|
|
|
*,-o)
|
|
|
|
git-check-ref-format "$2" || {
|
|
|
|
echo >&2 "'$2' is not suitable for a branch name"
|
|
|
|
exit 1
|
|
|
|
}
|
2006-01-23 01:28:49 +00:00
|
|
|
test -z "$origin_override" || {
|
|
|
|
echo >&2 "Do not give more than one -o options."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
origin_override=yes
|
2005-12-22 22:37:24 +00:00
|
|
|
origin="$2"; shift
|
|
|
|
;;
|
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
|
|
|
|
|
2006-01-23 01:24:22 +00:00
|
|
|
# --bare implies --no-checkout
|
2006-01-23 01:28:49 +00:00
|
|
|
if test yes = "$bare"
|
|
|
|
then
|
|
|
|
if test yes = "$origin_override"
|
|
|
|
then
|
|
|
|
echo >&2 '--bare and -o $origin options are incompatible.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
no_checkout=yes
|
|
|
|
fi
|
2006-01-15 00:00:32 +00:00
|
|
|
|
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
|
2006-01-20 06:47:39 +00:00
|
|
|
[ -z "$dir" ] && dir=$(echo "$repo" | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
|
2005-11-13 14:03:31 +00:00
|
|
|
[ -e "$dir" ] && echo "$dir already exists." && usage
|
2005-11-10 11:58:08 +00:00
|
|
|
mkdir -p "$dir" &&
|
2006-01-15 00:00:32 +00:00
|
|
|
D=$(cd "$dir" && pwd) &&
|
2006-02-23 11:25:20 +00:00
|
|
|
trap 'err=$?; cd ..; rm -r "$D"; exit $err' exit
|
2006-01-23 01:24:22 +00:00
|
|
|
case "$bare" in
|
2006-01-15 00:00:32 +00:00
|
|
|
yes) GIT_DIR="$D" ;;
|
|
|
|
*) GIT_DIR="$D/.git" ;;
|
|
|
|
esac && export GIT_DIR && git-init-db || usage
|
2006-01-23 01:24:22 +00:00
|
|
|
case "$bare" in
|
2006-01-15 00:00:32 +00:00
|
|
|
yes)
|
|
|
|
GIT_DIR="$D" ;;
|
|
|
|
*)
|
|
|
|
GIT_DIR="$D/.git" ;;
|
|
|
|
esac
|
2005-07-06 20:04:21 +00:00
|
|
|
|
|
|
|
# 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=
|
2006-01-15 00:00:32 +00:00
|
|
|
if ln "$repo/$sample_file" "$GIT_DIR/objects/sample" 2>/dev/null
|
2005-08-15 00:25:57 +00:00
|
|
|
then
|
|
|
|
l=l
|
|
|
|
fi &&
|
2006-01-15 00:00:32 +00:00
|
|
|
rm -f "$GIT_DIR/objects/sample" &&
|
2005-08-15 00:25:57 +00:00
|
|
|
cd "$repo" &&
|
2006-02-17 14:22:45 +00:00
|
|
|
find objects -depth -print | cpio -pumd$l "$GIT_DIR/" || exit 1
|
2005-08-15 00:25:57 +00:00
|
|
|
;;
|
|
|
|
yes)
|
2006-01-15 00:00:32 +00:00
|
|
|
mkdir -p "$GIT_DIR/objects/info"
|
2005-08-17 22:18:41 +00:00
|
|
|
{
|
|
|
|
test -f "$repo/objects/info/alternates" &&
|
|
|
|
cat "$repo/objects/info/alternates";
|
|
|
|
echo "$repo/objects"
|
2006-01-15 00:00:32 +00:00
|
|
|
} >"$GIT_DIR/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) |
|
2006-01-15 00:00:32 +00:00
|
|
|
(cd "$GIT_DIR" && 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 \
|
2006-01-15 00:00:32 +00:00
|
|
|
--exclude info "$repo/objects/" "$GIT_DIR/objects/" &&
|
2005-09-17 18:56:41 +00:00
|
|
|
rsync $quiet -av --ignore-existing \
|
2006-01-15 00:00:32 +00:00
|
|
|
--exclude info "$repo/refs/" "$GIT_DIR/refs/" || exit
|
2005-09-17 18:56:41 +00:00
|
|
|
|
|
|
|
# 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" \
|
2006-01-15 00:00:32 +00:00
|
|
|
"$GIT_DIR/TMP_ALT" 2>/dev/null ||
|
|
|
|
rm -f "$GIT_DIR/TMP_ALT"
|
|
|
|
if test -f "$GIT_DIR/TMP_ALT"
|
2005-09-17 18:56:41 +00:00
|
|
|
then
|
2005-11-11 05:19:04 +00:00
|
|
|
( cd "$D" &&
|
2005-09-17 18:56:41 +00:00
|
|
|
. git-parse-remote &&
|
2006-01-15 00:00:32 +00:00
|
|
|
resolve_alternates "$repo" <"$GIT_DIR/TMP_ALT" ) |
|
2005-09-17 18:56:41 +00:00
|
|
|
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 \
|
2006-01-15 00:00:32 +00:00
|
|
|
--exclude info "$alt" "$GIT_DIR/objects" || exit
|
2005-09-17 18:56:41 +00:00
|
|
|
done
|
2006-01-15 00:00:32 +00:00
|
|
|
rm -f "$GIT_DIR/TMP_ALT"
|
2005-09-17 18:56:41 +00:00
|
|
|
fi
|
2005-07-23 02:11:22 +00:00
|
|
|
;;
|
|
|
|
http://*)
|
2006-02-15 11:37:30 +00:00
|
|
|
if test -z "@@NO_CURL@@"
|
|
|
|
then
|
|
|
|
clone_dumb_http "$repo" "$D"
|
|
|
|
else
|
|
|
|
echo >&2 "http transport not supported, rebuild Git with curl support"
|
|
|
|
exit 1
|
|
|
|
fi
|
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" ;;
|
2005-12-13 23:58:00 +00:00
|
|
|
esac || {
|
|
|
|
echo >&2 "clone-pack from '$repo' failed."
|
|
|
|
exit 1
|
|
|
|
}
|
2005-07-23 02:11:22 +00:00
|
|
|
;;
|
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
|
|
|
|
2006-01-23 01:27:52 +00:00
|
|
|
if test -f "$GIT_DIR/HEAD" && test -z "$bare"
|
2005-09-27 00:17:09 +00:00
|
|
|
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/\(.*\)'`
|
2006-01-15 00:00:32 +00:00
|
|
|
mkdir -p "$GIT_DIR/remotes" &&
|
|
|
|
echo >"$GIT_DIR/remotes/origin" \
|
2005-11-02 06:19:36 +00:00
|
|
|
"URL: $repo
|
2005-12-22 22:37:24 +00:00
|
|
|
Pull: $head_points_at:$origin" &&
|
|
|
|
git-update-ref "refs/heads/$origin" $(git-rev-parse HEAD) &&
|
2006-01-15 00:00:32 +00:00
|
|
|
(cd "$GIT_DIR" && find "refs/heads" -type f -print) |
|
2005-11-06 08:52:57 +00:00
|
|
|
while read ref
|
|
|
|
do
|
2006-01-15 00:00:32 +00:00
|
|
|
head=`expr "$ref" : 'refs/heads/\(.*\)'` &&
|
2005-11-06 08:52:57 +00:00
|
|
|
test "$head_points_at" = "$head" ||
|
2005-12-22 22:37:24 +00:00
|
|
|
test "$origin" = "$head" ||
|
2005-11-06 08:52:57 +00:00
|
|
|
echo "Pull: ${head}:${head}"
|
2006-01-15 00:00:32 +00:00
|
|
|
done >>"$GIT_DIR/remotes/origin"
|
2005-11-02 06:19:36 +00:00
|
|
|
esac
|
|
|
|
|
2005-09-27 00:17:09 +00:00
|
|
|
case "$no_checkout" in
|
|
|
|
'')
|
2006-02-23 03:02:39 +00:00
|
|
|
git-read-tree -m -u -v HEAD HEAD
|
2005-09-27 00:17:09 +00:00
|
|
|
esac
|
|
|
|
fi
|
2006-02-17 21:33:24 +00:00
|
|
|
|
|
|
|
trap - exit
|
|
|
|
|