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.
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
echo >&2 "* git clone [-l] <repo> <dir>"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2005-07-08 22:46:33 +00:00
|
|
|
get_repo_base() {
|
|
|
|
(cd "$1" && (cd .git ; pwd)) 2> /dev/null
|
|
|
|
}
|
|
|
|
|
2005-07-06 20:04:21 +00:00
|
|
|
use_local=no
|
|
|
|
while
|
|
|
|
case "$#,$1" in
|
|
|
|
0,*) break ;;
|
|
|
|
*,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) use_local=yes ;;
|
|
|
|
*,-*) 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-07-06 20:04:21 +00:00
|
|
|
mkdir "$dir" &&
|
|
|
|
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" ) || {
|
|
|
|
repo="$repo/.git"
|
|
|
|
( cd "$repo/objects" ) || {
|
|
|
|
echo >&2 "-l flag seen but $repo is not local."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# See if we can hardlink and drop "l" if not.
|
|
|
|
sample_file=$(cd "$repo" && \
|
|
|
|
find objects -type f -print | sed -e 1q)
|
|
|
|
|
|
|
|
# objects directory should not be empty since we are cloning!
|
|
|
|
test -f "$repo/$sample_file" || exit
|
|
|
|
|
|
|
|
l=
|
|
|
|
if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev/null
|
|
|
|
then
|
|
|
|
l=l
|
|
|
|
fi &&
|
|
|
|
rm -f "$D/.git/objects/sample" &&
|
|
|
|
cp -r$l "$repo/objects" "$D/.git/" || exit 1
|
|
|
|
|
|
|
|
# Make a duplicate of refs and HEAD pointer
|
|
|
|
HEAD=
|
|
|
|
if test -f "$repo/HEAD"
|
|
|
|
then
|
|
|
|
HEAD=HEAD
|
|
|
|
fi
|
|
|
|
tar Ccf "$repo" - refs $HEAD | tar Cxf "$D/.git" - || exit 1
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-07-09 00:07:12 +00:00
|
|
|
case "$repo" in
|
|
|
|
rsync://*)
|
|
|
|
rsync -avz --ignore-existing "$repo/objects/" "$D/.git/objects/" &&
|
|
|
|
rsync -avz --ignore-existing "$repo/refs/" "$D/.git/refs/"
|
|
|
|
;;
|
|
|
|
http://*)
|
|
|
|
echo "Somebody should add http fetch" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cd "$D" && git-clone-pack "$repo"
|
|
|
|
;;
|
|
|
|
esac
|