3 # Copyright (c) 2005, Linus Torvalds
4 # Copyright (c) 2005, Junio C Hamano
6 # Clone a repository into a different directory that does not yet exist.
8 # See git-sh-setup why.
12 echo >&2 "* git clone [-l [-s]] [-q] [-u <upload-pack>] [-n] <repo> [<dir>]"
17 (cd "$1" && (cd .git
; pwd)) 2> /dev
/null
20 if [ -n "$GIT_SSL_NO_VERIFY" ]; then
25 # $1 = Remote, $2 = Local
26 curl
-nsfL $curl_extra_args "$1" >"$2"
30 # $1 - remote, $2 - local
32 clone_tmp
='.git/clone-tmp' &&
33 mkdir
-p "$clone_tmp" ||
exit 1
34 http_fetch
"$1/info/refs" "$clone_tmp/refs" &&
35 http_fetch
"$1/objects/info/packs" "$clone_tmp/packs" ||
{
36 echo >&2 "Cannot get remote repository information.
37 Perhaps git-update-server-info needs to be run there?"
47 idx
=`expr "$name" : '\(.*\)\.pack'`.idx
48 http_fetch
"$1/objects/pack/$name" ".git/objects/pack/$name" &&
49 http_fetch
"$1/objects/pack/$idx" ".git/objects/pack/$idx" &&
50 git-verify-pack
".git/objects/pack/$idx" ||
exit 1
51 done <"$clone_tmp/packs"
53 while read sha1 refname
55 name
=`expr "$refname" : 'refs/\(.*\)'` &&
59 git-http-fetch
-v -a -w "$name" "$name" "$1/" ||
exit 1
61 done <"$clone_tmp/refs"
73 *,-n) no_checkout
=yes ;;
74 *,-l|
*,--l|
*,--lo|
*,--loc|
*,--loca|
*,--local) use_local
=yes ;;
75 *,-s|
*,--s|
*,--sh|
*,--sha|
*,--shar|
*,--share|
*,--shared)
76 local_shared
=yes; use_local
=yes ;;
77 *,-q|
*,--quiet) quiet
=-q ;;
78 1,-u|
1,--upload-pack) usage
;;
81 upload_pack
="--exec=$1" ;;
89 # Turn the source into an absolute path if
93 if base
=$
(get_repo_base
"$repo"); then
99 # Try using "humanish" part of source repo if user didn't specify one
100 [ -z "$dir" ] && dir
=$
(echo "$repo" |
sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*/||g')
101 [ -e "$dir" ] && echo "$dir already exists." && usage
104 (cd "$dir" && git-init-db
&& pwd)
106 test -d "$D" || usage
108 # We do local magic only when the user tells us to.
109 case "$local,$use_local" in
111 ( cd "$repo/objects" ) ||
{
112 echo >&2 "-l flag seen but $repo is not local."
116 case "$local_shared" in
118 # See if we can hardlink and drop "l" if not.
119 sample_file
=$
(cd "$repo" && \
120 find objects
-type f
-print |
sed -e 1q
)
122 # objects directory should not be empty since we are cloning!
123 test -f "$repo/$sample_file" ||
exit
126 if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev
/null
130 rm -f "$D/.git/objects/sample" &&
132 find objects
-depth -print |
cpio -puamd$l "$D/.git/" ||
exit 1
135 mkdir
-p "$D/.git/objects/info"
137 test -f "$repo/objects/info/alternates" &&
138 cat "$repo/objects/info/alternates";
140 } >"$D/.git/objects/info/alternates"
144 # Make a duplicate of refs and HEAD pointer
146 if test -f "$repo/HEAD"
150 (cd "$repo" && tar cf
- refs
$HEAD) |
151 (cd "$D/.git" && tar xf
-) ||
exit 1
156 rsync
$quiet -av --ignore-existing \
157 --exclude info
"$repo/objects/" "$D/.git/objects/" &&
158 rsync
$quiet -av --ignore-existing \
159 --exclude info
"$repo/refs/" "$D/.git/refs/" ||
exit
161 # Look at objects/info/alternates for rsync -- http will
162 # support it natively and git native ones will do it on the
163 # remote end. Not having that file is not a crime.
164 rsync
-q "$repo/objects/info/alternates" \
165 "$D/.git/TMP_ALT" 2>/dev
/null ||
166 rm -f "$D/.git/TMP_ALT"
167 if test -f "$D/.git/TMP_ALT"
170 . git-parse-remote
&&
171 resolve_alternates
"$repo" <"./.git/TMP_ALT" ) |
174 case "$alt" in 'bad alternate: '*) die
"$alt";; esac
176 '') echo >&2 "Getting alternate: $alt" ;;
178 rsync
$quiet -av --ignore-existing \
179 --exclude info
"$alt" "$D/.git/objects" ||
exit
181 rm -f "$D/.git/TMP_ALT"
185 clone_dumb_http
"$repo" "$D"
188 cd "$D" && case "$upload_pack" in
189 '') git-clone-pack
$quiet "$repo" ;;
190 *) git-clone-pack
$quiet "$upload_pack" "$repo" ;;
199 if test -f ".git/HEAD"
201 head_points_at
=`git-symbolic-ref HEAD`
202 case "$head_points_at" in
204 head_points_at
=`expr "$head_points_at" : 'refs/heads/\(.*\)'`
205 mkdir
-p .git
/remotes
&&
206 echo >.git
/remotes
/origin \
208 Pull: $head_points_at:origin" &&
209 cp ".git/refs/heads/$head_points_at" .git
/refs
/heads
/origin
&&
210 find .git
/refs
/heads
-type f
-print |
213 head=`expr "$ref" : '.git/refs/heads/\(.*\)'` &&
214 test "$head_points_at" = "$head" ||
215 test "origin" = "$head" ||
216 echo "Pull: ${head}:${head}"
217 done >>.git
/remotes
/origin
220 case "$no_checkout" in