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-03-21 08:14:13 +00:00
|
|
|
echo >&2 "Usage: $0 [--use-separate-remote] [--reference <reference-repo>] [--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
|
2006-03-20 08:21:10 +00:00
|
|
|
*^*) continue;;
|
2005-10-18 04:47:06 +00:00
|
|
|
esac
|
2006-03-20 08:21:10 +00:00
|
|
|
if test -n "$use_separate_remote" &&
|
|
|
|
branch_name=`expr "$name" : 'heads/\(.*\)'`
|
|
|
|
then
|
|
|
|
tname="remotes/$branch_name"
|
|
|
|
else
|
|
|
|
tname=$name
|
|
|
|
fi
|
|
|
|
git-http-fetch -v -a -w "$tname" "$name" "$1/" || exit 1
|
2005-09-05 07:47:39 +00:00
|
|
|
done <"$clone_tmp/refs"
|
|
|
|
rm -fr "$clone_tmp"
|
2006-03-20 08:21:10 +00:00
|
|
|
http_fetch "$1/HEAD" "$GIT_DIR/REMOTE_HEAD"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Read git-fetch-pack -k output and store the remote branches.
|
|
|
|
copy_refs='
|
|
|
|
use File::Path qw(mkpath);
|
|
|
|
use File::Basename qw(dirname);
|
|
|
|
my $git_dir = $ARGV[0];
|
|
|
|
my $use_separate_remote = $ARGV[1];
|
2006-03-21 08:14:13 +00:00
|
|
|
my $origin = $ARGV[2];
|
2006-03-20 08:21:10 +00:00
|
|
|
|
2006-03-21 08:14:13 +00:00
|
|
|
my $branch_top = ($use_separate_remote ? "remotes/$origin" : "heads");
|
2006-03-20 08:21:10 +00:00
|
|
|
my $tag_top = "tags";
|
|
|
|
|
|
|
|
sub store {
|
|
|
|
my ($sha1, $name, $top) = @_;
|
|
|
|
$name = "$git_dir/refs/$top/$name";
|
|
|
|
mkpath(dirname($name));
|
|
|
|
open O, ">", "$name";
|
|
|
|
print O "$sha1\n";
|
|
|
|
close O;
|
2005-09-05 07:47:39 +00:00
|
|
|
}
|
|
|
|
|
2006-03-20 08:21:10 +00:00
|
|
|
open FH, "<", "$git_dir/CLONE_HEAD";
|
|
|
|
while (<FH>) {
|
|
|
|
my ($sha1, $name) = /^([0-9a-f]{40})\s(.*)$/;
|
|
|
|
next if ($name =~ /\^\173/);
|
|
|
|
if ($name eq "HEAD") {
|
|
|
|
open O, ">", "$git_dir/REMOTE_HEAD";
|
|
|
|
print O "$sha1\n";
|
|
|
|
close O;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if ($name =~ s/^refs\/heads\///) {
|
|
|
|
store($sha1, $name, $branch_top);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if ($name =~ s/^refs\/tags\///) {
|
|
|
|
store($sha1, $name, $tag_top);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close FH;
|
|
|
|
'
|
|
|
|
|
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=
|
2006-03-20 08:21:10 +00:00
|
|
|
reference=
|
|
|
|
origin=
|
2006-01-23 01:28:49 +00:00
|
|
|
origin_override=
|
2006-03-20 08:21:10 +00:00
|
|
|
use_separate_remote=
|
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 ;;
|
2006-03-20 08:21:10 +00:00
|
|
|
*,--use-separate-remote)
|
|
|
|
use_separate_remote=t ;;
|
2005-12-22 22:37:24 +00:00
|
|
|
1,-o) usage;;
|
2006-03-20 08:21:10 +00:00
|
|
|
1,--reference) usage ;;
|
|
|
|
*,--reference)
|
|
|
|
shift; reference="$1" ;;
|
|
|
|
*,--reference=*)
|
|
|
|
reference=`expr "$1" : '--reference=\(.*\)'` ;;
|
2005-12-22 22:37:24 +00:00
|
|
|
*,-o)
|
2006-03-21 08:14:13 +00:00
|
|
|
case "$2" in
|
|
|
|
*/*)
|
|
|
|
echo >&2 "'$2' is not suitable for an origin name"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
git-check-ref-format "heads/$2" || {
|
2005-12-22 22:37:24 +00:00
|
|
|
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
|
2006-03-20 08:21:10 +00:00
|
|
|
if test t = "$use_separate_remote"
|
|
|
|
then
|
|
|
|
echo >&2 '--bare and --use-separate-remote options are incompatible.'
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-01-23 01:28:49 +00:00
|
|
|
no_checkout=yes
|
|
|
|
fi
|
2006-01-15 00:00:32 +00:00
|
|
|
|
2006-03-21 08:14:13 +00:00
|
|
|
if test -z "$origin"
|
2006-03-20 08:21:10 +00:00
|
|
|
then
|
2006-03-21 08:14:13 +00:00
|
|
|
origin=origin
|
2006-03-20 08:21:10 +00:00
|
|
|
fi
|
|
|
|
|
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
|
|
|
|
2006-03-20 08:21:10 +00:00
|
|
|
if test -n "$reference"
|
|
|
|
then
|
|
|
|
if test -d "$reference"
|
|
|
|
then
|
|
|
|
if test -d "$reference/.git/objects"
|
|
|
|
then
|
|
|
|
reference="$reference/.git"
|
|
|
|
fi
|
|
|
|
reference=$(cd "$reference" && pwd)
|
|
|
|
echo "$reference/objects" >"$GIT_DIR/objects/info/alternates"
|
|
|
|
(cd "$reference" && tar cf - refs) |
|
|
|
|
(cd "$GIT_DIR/refs" &&
|
|
|
|
mkdir reference-tmp &&
|
|
|
|
cd reference-tmp &&
|
|
|
|
tar xf -)
|
|
|
|
else
|
|
|
|
echo >&2 "$reference: not a local directory." && usage
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f "$GIT_DIR/CLONE_HEAD"
|
|
|
|
|
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
|
2006-03-20 08:21:10 +00:00
|
|
|
git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD"
|
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-03-20 08:21:10 +00:00
|
|
|
--exclude info "$repo/objects/" "$GIT_DIR/objects/" ||
|
|
|
|
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
|
2006-03-20 08:21:10 +00:00
|
|
|
git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD"
|
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
|
2006-03-20 08:21:10 +00:00
|
|
|
'') git-fetch-pack --all -k $quiet "$repo" ;;
|
|
|
|
*) git-fetch-pack --all -k $quiet "$upload_pack" "$repo" ;;
|
|
|
|
esac >"$GIT_DIR/CLONE_HEAD" || {
|
|
|
|
echo >&2 "fetch-pack from '$repo' failed."
|
2005-12-13 23:58:00 +00:00
|
|
|
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
|
2006-03-20 08:21:10 +00:00
|
|
|
test -d "$GIT_DIR/refs/reference-tmp" && rm -fr "$GIT_DIR/refs/reference-tmp"
|
|
|
|
|
|
|
|
if test -f "$GIT_DIR/CLONE_HEAD"
|
|
|
|
then
|
|
|
|
# Figure out where the remote HEAD points at.
|
2006-03-21 08:14:13 +00:00
|
|
|
perl -e "$copy_refs" "$GIT_DIR" "$use_separate_remote" "$origin"
|
2006-03-20 08:21:10 +00:00
|
|
|
fi
|
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-03-20 08:21:10 +00:00
|
|
|
if test -z "$bare" && test -f "$GIT_DIR/REMOTE_HEAD"
|
2005-09-27 00:17:09 +00:00
|
|
|
then
|
2006-03-20 08:21:10 +00:00
|
|
|
head_sha1=`cat "$GIT_DIR/REMOTE_HEAD"`
|
|
|
|
# Figure out which remote branch HEAD points at.
|
|
|
|
case "$use_separate_remote" in
|
|
|
|
'') remote_top=refs/heads ;;
|
2006-03-21 08:14:13 +00:00
|
|
|
*) remote_top="refs/remotes/$origin" ;;
|
2006-03-20 08:21:10 +00:00
|
|
|
esac
|
2006-03-21 08:14:13 +00:00
|
|
|
|
|
|
|
# What to use to track the remote primary branch
|
|
|
|
if test -n "$use_separate_remote"
|
|
|
|
then
|
|
|
|
origin_tracking="remotes/$origin/master"
|
|
|
|
else
|
|
|
|
origin_tracking="heads/$origin"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The name under $remote_top the remote HEAD seems to point at
|
2006-03-20 08:21:10 +00:00
|
|
|
head_points_at=$(
|
|
|
|
(
|
|
|
|
echo "master"
|
|
|
|
cd "$GIT_DIR/$remote_top" &&
|
|
|
|
find . -type f -print | sed -e 's/^\.\///'
|
|
|
|
) | (
|
|
|
|
done=f
|
|
|
|
while read name
|
|
|
|
do
|
|
|
|
test t = $done && continue
|
|
|
|
branch_tip=`cat "$GIT_DIR/$remote_top/$name"`
|
|
|
|
if test "$head_sha1" = "$branch_tip"
|
|
|
|
then
|
|
|
|
echo "$name"
|
|
|
|
done=t
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
)
|
2006-03-21 08:14:13 +00:00
|
|
|
|
|
|
|
# Write out remotes/$origin file.
|
2005-11-02 06:19:36 +00:00
|
|
|
case "$head_points_at" in
|
2006-03-20 08:21:10 +00:00
|
|
|
?*)
|
2006-01-15 00:00:32 +00:00
|
|
|
mkdir -p "$GIT_DIR/remotes" &&
|
2006-03-21 08:14:13 +00:00
|
|
|
echo >"$GIT_DIR/remotes/$origin" \
|
2005-11-02 06:19:36 +00:00
|
|
|
"URL: $repo
|
2006-03-21 08:14:13 +00:00
|
|
|
Pull: refs/heads/$head_points_at:refs/$origin_tracking" &&
|
2006-03-20 08:21:10 +00:00
|
|
|
case "$use_separate_remote" in
|
|
|
|
t) git-update-ref HEAD "$head_sha1" ;;
|
|
|
|
*) git-update-ref "refs/$origin" $(git-rev-parse HEAD)
|
|
|
|
esac &&
|
2006-03-21 08:14:13 +00:00
|
|
|
(cd "$GIT_DIR/$remote_top" && find . -type f -print) |
|
|
|
|
while read dotslref
|
2005-11-06 08:52:57 +00:00
|
|
|
do
|
2006-03-21 08:14:13 +00:00
|
|
|
name=`expr "$dotslref" : './\(.*\)'` &&
|
2006-03-20 08:21:10 +00:00
|
|
|
test "$head_points_at" = "$name" ||
|
2005-12-22 22:37:24 +00:00
|
|
|
test "$origin" = "$head" ||
|
2006-03-20 08:21:10 +00:00
|
|
|
echo "Pull: refs/heads/${name}:$remote_top/${name}"
|
2006-03-21 08:14:13 +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-03-20 08:21:10 +00:00
|
|
|
rm -f "$GIT_DIR/CLONE_HEAD" "$GIT_DIR/REMOTE_HEAD"
|
2006-02-17 21:33:24 +00:00
|
|
|
|
|
|
|
trap - exit
|
|
|
|
|