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-05-28 17:14:38 +00:00
|
|
|
echo >&2 "Usage: $0 [--template=<template_directory>] [--use-separate-remote] [--reference <reference-repo>] [--bare] [-l [-s]] [-q] [-u <upload-pack>] [--origin <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" &&
|
2006-06-10 08:12:50 +00:00
|
|
|
clone_tmp="$GIT_DIR/clone-tmp" &&
|
2005-09-05 07:47:39 +00:00
|
|
|
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
|
2006-04-13 22:01:24 +00:00
|
|
|
name=`expr "z$refname" : 'zrefs/\(.*\)'` &&
|
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" &&
|
2006-04-13 22:01:24 +00:00
|
|
|
branch_name=`expr "z$name" : 'zheads/\(.*\)'`
|
2006-03-20 08:21:10 +00:00
|
|
|
then
|
2006-03-21 09:58:26 +00:00
|
|
|
tname="remotes/$origin/$branch_name"
|
2006-03-20 08:21:10 +00:00
|
|
|
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"
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
http_fetch "$1/HEAD" "$GIT_DIR/REMOTE_HEAD" ||
|
|
|
|
rm -f "$GIT_DIR/REMOTE_HEAD"
|
2006-03-20 08:21:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# 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=
|
2006-03-30 17:01:23 +00:00
|
|
|
local=no
|
2005-07-06 20:04:21 +00:00
|
|
|
use_local=no
|
2005-08-15 00:25:57 +00:00
|
|
|
local_shared=no
|
2006-05-28 17:14:38 +00:00
|
|
|
unset template
|
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 ;;
|
2006-05-28 17:14:38 +00:00
|
|
|
1,--template) usage ;;
|
|
|
|
*,--template)
|
|
|
|
shift; template="--template=$1" ;;
|
|
|
|
*,--template=*)
|
|
|
|
template="$1" ;;
|
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 ;;
|
|
|
|
1,--reference) usage ;;
|
|
|
|
*,--reference)
|
|
|
|
shift; reference="$1" ;;
|
|
|
|
*,--reference=*)
|
|
|
|
reference=`expr "$1" : '--reference=\(.*\)'` ;;
|
2006-03-30 17:00:43 +00:00
|
|
|
*,-o|*,--or|*,--ori|*,--orig|*,--origi|*,--origin)
|
2006-03-21 08:14:13 +00:00
|
|
|
case "$2" in
|
2006-03-30 17:00:43 +00:00
|
|
|
'')
|
|
|
|
usage ;;
|
2006-03-21 08:14:13 +00:00
|
|
|
*/*)
|
|
|
|
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" || {
|
2006-03-30 17:00:43 +00:00
|
|
|
echo >&2 "Do not give more than one --origin options."
|
2006-01-23 01:28:49 +00:00
|
|
|
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-03-30 17:01:23 +00:00
|
|
|
repo="$1"
|
|
|
|
if test -z "$repo"
|
|
|
|
then
|
|
|
|
echo >&2 'you must specify a repository to clone.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
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
|
2006-03-30 17:00:43 +00:00
|
|
|
echo >&2 '--bare and --origin $origin options are incompatible.'
|
2006-01-23 01:28:49 +00:00
|
|
|
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
|
|
|
|
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-05-22 19:34:00 +00:00
|
|
|
trap 'err=$?; cd ..; rm -r "$D"; exit $err' 0
|
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" ;;
|
2006-06-10 08:12:50 +00:00
|
|
|
esac && export GIT_DIR && git-init-db ${template+"$template"} || usage
|
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"
|
2006-05-07 18:19:33 +00:00
|
|
|
echo "$repo/objects" >> "$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
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
# Read git-fetch-pack -k output and store the remote branches.
|
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
|
|
|
# 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
|
|
|
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
head_sha1=`cat "$GIT_DIR/REMOTE_HEAD"`
|
|
|
|
case "$head_sha1" in
|
|
|
|
'ref: refs/'*)
|
|
|
|
# Uh-oh, the remote told us (http transport done against
|
|
|
|
# new style repository with a symref HEAD).
|
|
|
|
# Ideally we should skip the guesswork but for now
|
|
|
|
# opt for minimum change.
|
2006-04-13 22:01:24 +00:00
|
|
|
head_sha1=`expr "z$head_sha1" : 'zref: refs/heads/\(.*\)'`
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
head_sha1=`cat "$GIT_DIR/$remote_top/$head_sha1"`
|
|
|
|
;;
|
|
|
|
esac
|
2006-03-21 08:14:13 +00:00
|
|
|
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
# 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
|
|
|
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
# Write out remotes/$origin file, and update our "$head_points_at".
|
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" &&
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
git-symbolic-ref HEAD "refs/heads/$head_points_at" &&
|
2006-03-20 08:21:10 +00:00
|
|
|
case "$use_separate_remote" in
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
t) origin_track="$remote_top/$head_points_at"
|
|
|
|
git-update-ref HEAD "$head_sha1" ;;
|
|
|
|
*) origin_track="$remote_top/$origin"
|
|
|
|
git-update-ref "refs/heads/$origin" "$head_sha1" ;;
|
2006-03-20 08:21:10 +00:00
|
|
|
esac &&
|
git-clone: fix handling of upsteram whose HEAD does not point at master.
When cloning from a remote repository that has master, main, and
origin branches _and_ with the HEAD pointing at main branch, we
did quite confused things during clone. So this cleans things
up. The behaviour is a bit different between separate remotes/
layout and the mixed branches layout.
The newer layout with $GIT_DIR/refs/remotes/$origin/, things are
simpler and more transparent:
- remote branches are copied to refs/remotes/$origin/.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches, and merge the branch HEAD pointed at at the time of
the cloning.
Everything-in-refs/heads layout was the more confused one, but
cleaned up like this:
- remote branches are copied to refs/heads, but the branch
"$origin" is not copied, instead a copy of the branch the
remote HEAD points at is created there.
- HEAD points at the branch with the same name as the remote
HEAD points at, and starts at where the remote HEAD points at.
- $GIT_DIR/remotes/$origin file is set up to fetch all remote
branches except "$origin", and merge the branch HEAD pointed
at at the time of the cloning.
With this, the remote has master, main and origin, and its HEAD
points at main, you could:
git clone $URL --origin upstream
to use refs/heads/upstream as the tracking branch for remote
"main", and your primary working branch will also be "main".
"master" and "origin" are used to track the corresponding remote
branches and with this setup they do not have any special meaning.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-04-02 23:25:01 +00:00
|
|
|
echo >"$GIT_DIR/remotes/$origin" \
|
|
|
|
"URL: $repo
|
|
|
|
Pull: refs/heads/$head_points_at:$origin_track" &&
|
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-06-08 08:17:01 +00:00
|
|
|
name=`expr "$dotslref" : './\(.*\)'`
|
|
|
|
if test "z$head_points_at" = "z$name"
|
|
|
|
then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if test "$use_separate_remote" = '' &&
|
|
|
|
test "z$origin" = "z$name"
|
|
|
|
then
|
|
|
|
continue
|
|
|
|
fi
|
2006-03-20 08:21:10 +00:00
|
|
|
echo "Pull: refs/heads/${name}:$remote_top/${name}"
|
2006-03-21 09:58:26 +00:00
|
|
|
done >>"$GIT_DIR/remotes/$origin" &&
|
|
|
|
case "$use_separate_remote" in
|
|
|
|
t)
|
|
|
|
rm -f "refs/remotes/$origin/HEAD"
|
|
|
|
git-symbolic-ref "refs/remotes/$origin/HEAD" \
|
|
|
|
"refs/remotes/$origin/$head_points_at"
|
|
|
|
esac
|
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
|
|
|
|
2006-05-22 19:34:00 +00:00
|
|
|
trap - 0
|
2006-02-17 21:33:24 +00:00
|
|
|
|