]> git.ipfire.org Git - thirdparty/git.git/blame - git-clone.sh
Fix a test failure (t9500-*.sh) on cygwin
[thirdparty/git.git] / git-clone.sh
CommitLineData
3f571e0b 1#!/bin/sh
e95ab1ed
JH
2#
3# Copyright (c) 2005, Linus Torvalds
4# Copyright (c) 2005, Junio C Hamano
a6080a0a 5#
e95ab1ed
JH
6# Clone a repository into a different directory that does not yet exist.
7
365527ad
JH
8# See git-sh-setup why.
9unset CDPATH
10
87b787ac
DL
11die() {
12 echo >&2 "$@"
e95ab1ed
JH
13 exit 1
14}
15
87b787ac 16usage() {
37818d7d 17 die "Usage: $0 [--template=<template_directory>] [--reference <reference-repo>] [--bare] [-l [-s]] [-q] [-u <upload-pack>] [--origin <name>] [--depth <n>] [-n] <repo> [<dir>]"
87b787ac
DL
18}
19
ba375acf 20get_repo_base() {
c2f599e0
JH
21 (
22 cd "`/bin/pwd`" &&
defe13a2 23 cd "$1" || cd "$1.git" &&
c2f599e0 24 {
223fa327 25 cd .git
c2f599e0
JH
26 pwd
27 }
223fa327 28 ) 2>/dev/null
ba375acf
LT
29}
30
0516de30
JH
31if [ -n "$GIT_SSL_NO_VERIFY" ]; then
32 curl_extra_args="-k"
33fi
34
35http_fetch () {
36 # $1 = Remote, $2 = Local
66c9ec25 37 curl -nsfL $curl_extra_args "$1" >"$2"
0516de30
JH
38}
39
40clone_dumb_http () {
41 # $1 - remote, $2 - local
42 cd "$2" &&
5e3a620c 43 clone_tmp="$GIT_DIR/clone-tmp" &&
0516de30 44 mkdir -p "$clone_tmp" || exit 1
3ea099d4 45 if [ -n "$GIT_CURL_FTP_NO_EPSV" -o \
5be60078 46 "`git config --bool http.noEPSV`" = true ]; then
3ea099d4
SK
47 curl_extra_args="${curl_extra_args} --disable-epsv"
48 fi
87b787ac
DL
49 http_fetch "$1/info/refs" "$clone_tmp/refs" ||
50 die "Cannot get remote repository information.
0516de30 51Perhaps git-update-server-info needs to be run there?"
7e8c8255 52 test "z$quiet" = z && v=-v || v=
0516de30
JH
53 while read sha1 refname
54 do
f327dbce 55 name=`expr "z$refname" : 'zrefs/\(.*\)'` &&
cdb39508 56 case "$name" in
dfeff66e 57 *^*) continue;;
cdb39508 58 esac
983d2ee2
JH
59 case "$bare,$name" in
60 yes,* | ,heads/* | ,tags/*) ;;
61 *) continue ;;
62 esac
dfeff66e 63 if test -n "$use_separate_remote" &&
f327dbce 64 branch_name=`expr "z$name" : 'zheads/\(.*\)'`
dfeff66e 65 then
5ceb05f8 66 tname="remotes/$origin/$branch_name"
dfeff66e
JH
67 else
68 tname=$name
69 fi
928c210a 70 git-http-fetch $v -a -w "$tname" "$sha1" "$1" || exit 1
0516de30
JH
71 done <"$clone_tmp/refs"
72 rm -fr "$clone_tmp"
c72112e6
JH
73 http_fetch "$1/HEAD" "$GIT_DIR/REMOTE_HEAD" ||
74 rm -f "$GIT_DIR/REMOTE_HEAD"
59c93929
SV
75 if test -f "$GIT_DIR/REMOTE_HEAD"; then
76 head_sha1=`cat "$GIT_DIR/REMOTE_HEAD"`
77 case "$head_sha1" in
78 'ref: refs/'*)
79 ;;
80 *)
81 git-http-fetch $v -a "$head_sha1" "$1" ||
82 rm -f "$GIT_DIR/REMOTE_HEAD"
83 ;;
84 esac
85 fi
dfeff66e
JH
86}
87
167a4a33 88quiet=
ef5b4eab 89local=no
3d5c418f 90use_local_hardlink=yes
aae4f42c 91local_shared=no
a57c8bac 92unset template
036a72d8 93no_checkout=
6ec311da 94upload_pack=
87e80c4b 95bare=
dfeff66e
JH
96reference=
97origin=
e6489a1b 98origin_override=
71821351 99use_separate_remote=t
016e6ccb 100depth=
83a5ad61 101no_progress=
23d53358 102local_explicitly_asked_for=
83a5ad61 103test -t 1 || no_progress=--no-progress
e95ab1ed
JH
104while
105 case "$#,$1" in
106 0,*) break ;;
8a1a120c
JH
107 *,-n|*,--no|*,--no-|*,--no-c|*,--no-ch|*,--no-che|*,--no-chec|\
108 *,--no-check|*,--no-checko|*,--no-checkou|*,--no-checkout)
109 no_checkout=yes ;;
87e80c4b
JH
110 *,--na|*,--nak|*,--nake|*,--naked|\
111 *,-b|*,--b|*,--ba|*,--bar|*,--bare) bare=yes ;;
3d5c418f 112 *,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local)
23d53358 113 local_explicitly_asked_for=yes
3d5c418f
JH
114 use_local_hardlink=yes ;;
115 *,--no-h|*,--no-ha|*,--no-har|*,--no-hard|*,--no-hardl|\
116 *,--no-hardli|*,--no-hardlin|*,--no-hardlink|*,--no-hardlinks)
117 use_local_hardlink=no ;;
a6080a0a 118 *,-s|*,--s|*,--sh|*,--sha|*,--shar|*,--share|*,--shared)
3d5c418f 119 local_shared=yes; ;;
a57c8bac
JH
120 1,--template) usage ;;
121 *,--template)
122 shift; template="--template=$1" ;;
123 *,--template=*)
124 template="$1" ;;
167a4a33 125 *,-q|*,--quiet) quiet=-q ;;
63085fab 126 *,--use-separate-remote) ;;
b360cca0 127 *,--no-separate-remote)
63085fab 128 die "clones are always made with separate-remote layout" ;;
dfeff66e
JH
129 1,--reference) usage ;;
130 *,--reference)
131 shift; reference="$1" ;;
132 *,--reference=*)
8096fae7 133 reference=`expr "z$1" : 'z--reference=\(.*\)'` ;;
98a4fef3 134 *,-o|*,--or|*,--ori|*,--orig|*,--origi|*,--origin)
47874d6d 135 case "$2" in
98a4fef3
YS
136 '')
137 usage ;;
47874d6d 138 */*)
87b787ac 139 die "'$2' is not suitable for an origin name"
47874d6d 140 esac
5be60078 141 git check-ref-format "heads/$2" ||
87b787ac
DL
142 die "'$2' is not suitable for a branch name"
143 test -z "$origin_override" ||
144 die "Do not give more than one --origin options."
e6489a1b 145 origin_override=yes
e6c310fd
JS
146 origin="$2"; shift
147 ;;
1cadb5a2 148 1,-u|1,--upload-pack) usage ;;
6ec311da
JH
149 *,-u|*,--upload-pack)
150 shift
ae1dffcb
JH
151 upload_pack="--upload-pack=$1" ;;
152 *,--upload-pack=*)
4a91a1f3 153 upload_pack=--upload-pack=$(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
016e6ccb
JS
154 1,--depth) usage;;
155 *,--depth)
156 shift
157 depth="--depth=$1";;
e95ab1ed
JH
158 *,-*) usage ;;
159 *) break ;;
160 esac
161do
162 shift
163done
164
ef5b4eab 165repo="$1"
87b787ac
DL
166test -n "$repo" ||
167 die 'you must specify a repository to clone.'
ef5b4eab 168
b360cca0 169# --bare implies --no-checkout and --no-separate-remote
e6489a1b
JH
170if test yes = "$bare"
171then
172 if test yes = "$origin_override"
173 then
87b787ac 174 die '--bare and --origin $origin options are incompatible.'
e6489a1b
JH
175 fi
176 no_checkout=yes
71821351 177 use_separate_remote=
e6489a1b 178fi
8a1a120c 179
47874d6d 180if test -z "$origin"
dfeff66e 181then
47874d6d 182 origin=origin
dfeff66e
JH
183fi
184
ba375acf
LT
185# Turn the source into an absolute path if
186# it is local
ba375acf
LT
187if base=$(get_repo_base "$repo"); then
188 repo="$base"
189 local=yes
190fi
191
3f571e0b 192dir="$2"
0879aa28 193# Try using "humanish" part of source repo if user didn't specify one
e7555785 194[ -z "$dir" ] && dir=$(echo "$repo" | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
87b787ac 195[ -e "$dir" ] && die "destination directory '$dir' already exists."
20ccef49
ML
196[ yes = "$bare" ] && unset GIT_WORK_TREE
197[ -n "$GIT_WORK_TREE" ] && [ -e "$GIT_WORK_TREE" ] &&
198die "working tree '$GIT_WORK_TREE' already exists."
68ad8910 199D=
20ccef49 200W=
68ad8910
ML
201cleanup() {
202 err=$?
203 test -z "$D" && rm -rf "$dir"
20ccef49 204 test -z "$W" && test -n "$GIT_WORK_TREE" && rm -rf "$GIT_WORK_TREE"
68ad8910
ML
205 cd ..
206 test -n "$D" && rm -rf "$D"
20ccef49 207 test -n "$W" && rm -rf "$W"
68ad8910
ML
208 exit $err
209}
210trap cleanup 0
211mkdir -p "$dir" && D=$(cd "$dir" && pwd) || usage
20ccef49
ML
212test -n "$GIT_WORK_TREE" && mkdir -p "$GIT_WORK_TREE" &&
213W=$(cd "$GIT_WORK_TREE" && pwd) && export GIT_WORK_TREE="$W"
214if test yes = "$bare" || test -n "$GIT_WORK_TREE"; then
215 GIT_DIR="$D"
216else
217 GIT_DIR="$D/.git"
218fi &&
68ad8910 219export GIT_DIR &&
312efe9b
JH
220GIT_CONFIG="$GIT_DIR/config" git-init $quiet ${template+"$template"} || usage
221
222if test -n "$bare"
223then
224 GIT_CONFIG="$GIT_DIR/config" git config core.bare true
225fi
e95ab1ed 226
dfeff66e
JH
227if test -n "$reference"
228then
099c7837 229 ref_git=
dfeff66e
JH
230 if test -d "$reference"
231 then
232 if test -d "$reference/.git/objects"
233 then
099c7837
JH
234 ref_git="$reference/.git"
235 elif test -d "$reference/objects"
236 then
237 ref_git="$reference"
dfeff66e 238 fi
099c7837
JH
239 fi
240 if test -n "$ref_git"
241 then
242 ref_git=$(cd "$ref_git" && pwd)
243 echo "$ref_git/objects" >"$GIT_DIR/objects/info/alternates"
244 (
245 GIT_DIR="$ref_git" git for-each-ref \
246 --format='%(objectname) %(*objectname)'
247 ) |
248 while read a b
249 do
250 test -z "$a" ||
251 git update-ref "refs/reference-tmp/$a" "$a"
252 test -z "$b" ||
253 git update-ref "refs/reference-tmp/$b" "$b"
254 done
dfeff66e 255 else
87b787ac 256 die "reference repository '$reference' is not a local directory."
dfeff66e
JH
257 fi
258fi
259
260rm -f "$GIT_DIR/CLONE_HEAD"
261
e95ab1ed 262# We do local magic only when the user tells us to.
3d5c418f
JH
263case "$local" in
264yes)
87b787ac 265 ( cd "$repo/objects" ) ||
3d5c418f 266 die "cannot chdir to local '$repo/objects'."
e95ab1ed 267
3d5c418f
JH
268 if test "$local_shared" = yes
269 then
270 mkdir -p "$GIT_DIR/objects/info"
271 echo "$repo/objects" >>"$GIT_DIR/objects/info/alternates"
272 else
273 l= &&
274 if test "$use_local_hardlink" = yes
275 then
276 # See if we can hardlink and drop "l" if not.
277 sample_file=$(cd "$repo" && \
278 find objects -type f -print | sed -e 1q)
279 # objects directory should not be empty because
280 # we are cloning!
281 test -f "$repo/$sample_file" || exit
282 if ln "$repo/$sample_file" "$GIT_DIR/objects/sample" 2>/dev/null
283 then
284 rm -f "$GIT_DIR/objects/sample"
285 l=l
23d53358
JH
286 elif test -n "$local_explicitly_asked_for"
287 then
3d5c418f
JH
288 echo >&2 "Warning: -l asked but cannot hardlink to $repo"
289 fi
290 fi &&
291 cd "$repo" &&
292 find objects -depth -print | cpio -pumd$l "$GIT_DIR/" || exit 1
293 fi
57a39690 294 git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD" || exit 1
7558ef89
LT
295 ;;
296*)
1cadb5a2
JH
297 case "$repo" in
298 rsync://*)
016e6ccb
JS
299 case "$depth" in
300 "") ;;
301 *) die "shallow over rsync not supported" ;;
302 esac
4447badc 303 rsync $quiet -av --ignore-existing \
dfeff66e
JH
304 --exclude info "$repo/objects/" "$GIT_DIR/objects/" ||
305 exit
4447badc
JH
306 # Look at objects/info/alternates for rsync -- http will
307 # support it natively and git native ones will do it on the
308 # remote end. Not having that file is not a crime.
89d844d0 309 rsync -q "$repo/objects/info/alternates" \
8a1a120c
JH
310 "$GIT_DIR/TMP_ALT" 2>/dev/null ||
311 rm -f "$GIT_DIR/TMP_ALT"
312 if test -f "$GIT_DIR/TMP_ALT"
4447badc 313 then
0e9ab02d 314 ( cd "$D" &&
4447badc 315 . git-parse-remote &&
8a1a120c 316 resolve_alternates "$repo" <"$GIT_DIR/TMP_ALT" ) |
4447badc
JH
317 while read alt
318 do
319 case "$alt" in 'bad alternate: '*) die "$alt";; esac
320 case "$quiet" in
321 '') echo >&2 "Getting alternate: $alt" ;;
322 esac
323 rsync $quiet -av --ignore-existing \
8a1a120c 324 --exclude info "$alt" "$GIT_DIR/objects" || exit
4447badc 325 done
8a1a120c 326 rm -f "$GIT_DIR/TMP_ALT"
4447badc 327 fi
57a39690 328 git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD" || exit 1
1cadb5a2 329 ;;
38529e28 330 https://*|http://*|ftp://*)
016e6ccb
JS
331 case "$depth" in
332 "") ;;
333 *) die "shallow over http or ftp not supported" ;;
334 esac
6c5c62f3
FP
335 if test -z "@@NO_CURL@@"
336 then
337 clone_dumb_http "$repo" "$D"
338 else
87b787ac 339 die "http transport not supported, rebuild Git with curl support"
6c5c62f3 340 fi
1cadb5a2
JH
341 ;;
342 *)
ced78b39 343 case "$upload_pack" in
83a5ad61
JS
344 '') git-fetch-pack --all -k $quiet $depth $no_progress "$repo";;
345 *) git-fetch-pack --all -k $quiet "$upload_pack" $depth $no_progress "$repo" ;;
87b787ac
DL
346 esac >"$GIT_DIR/CLONE_HEAD" ||
347 die "fetch-pack from '$repo' failed."
1cadb5a2 348 ;;
6ec311da 349 esac
7558ef89
LT
350 ;;
351esac
dfeff66e
JH
352test -d "$GIT_DIR/refs/reference-tmp" && rm -fr "$GIT_DIR/refs/reference-tmp"
353
354if test -f "$GIT_DIR/CLONE_HEAD"
355then
c72112e6 356 # Read git-fetch-pack -k output and store the remote branches.
def2747d
SS
357 if [ -n "$use_separate_remote" ]
358 then
359 branch_top="remotes/$origin"
360 else
361 branch_top="heads"
362 fi
363 tag_top="tags"
364 while read sha1 name
365 do
366 case "$name" in
367 *'^{}')
368 continue ;;
369 HEAD)
370 destname="REMOTE_HEAD" ;;
371 refs/heads/*)
372 destname="refs/$branch_top/${name#refs/heads/}" ;;
373 refs/tags/*)
374 destname="refs/$tag_top/${name#refs/tags/}" ;;
375 *)
376 continue ;;
377 esac
5be60078 378 git update-ref -m "clone: from $repo" "$destname" "$sha1" ""
def2747d 379 done < "$GIT_DIR/CLONE_HEAD"
dfeff66e 380fi
1cadb5a2 381
20ccef49
ML
382if test -n "$W"; then
383 cd "$W" || exit
384else
385 cd "$D" || exit
386fi
036a72d8 387
dfeff66e 388if test -z "$bare" && test -f "$GIT_DIR/REMOTE_HEAD"
036a72d8 389then
63085fab
JH
390 # a non-bare repository is always in separate-remote layout
391 remote_top="refs/remotes/$origin"
c72112e6
JH
392 head_sha1=`cat "$GIT_DIR/REMOTE_HEAD"`
393 case "$head_sha1" in
394 'ref: refs/'*)
395 # Uh-oh, the remote told us (http transport done against
396 # new style repository with a symref HEAD).
397 # Ideally we should skip the guesswork but for now
398 # opt for minimum change.
f327dbce 399 head_sha1=`expr "z$head_sha1" : 'zref: refs/heads/\(.*\)'`
c72112e6
JH
400 head_sha1=`cat "$GIT_DIR/$remote_top/$head_sha1"`
401 ;;
402 esac
47874d6d 403
c72112e6 404 # The name under $remote_top the remote HEAD seems to point at.
dfeff66e
JH
405 head_points_at=$(
406 (
3fe71f3a 407 test -f "$GIT_DIR/$remote_top/master" && echo "master"
dfeff66e
JH
408 cd "$GIT_DIR/$remote_top" &&
409 find . -type f -print | sed -e 's/^\.\///'
410 ) | (
411 done=f
412 while read name
413 do
414 test t = $done && continue
415 branch_tip=`cat "$GIT_DIR/$remote_top/$name"`
416 if test "$head_sha1" = "$branch_tip"
417 then
418 echo "$name"
419 done=t
420 fi
421 done
422 )
423 )
47874d6d 424
6762079a 425 # Upstream URL
5be60078 426 git config remote."$origin".url "$repo" &&
6762079a
NS
427
428 # Set up the mappings to track the remote branches.
5be60078 429 git config remote."$origin".fetch \
6762079a
NS
430 "+refs/heads/*:$remote_top/*" '^$' &&
431
61dde8f9 432 # Write out remote.$origin config, and update our "$head_points_at".
e125c1a7 433 case "$head_points_at" in
dfeff66e 434 ?*)
61dde8f9 435 # Local default branch
5be60078 436 git symbolic-ref HEAD "refs/heads/$head_points_at" &&
61dde8f9
JH
437
438 # Tracking branch for the primary branch at the remote.
5be60078 439 git update-ref HEAD "$head_sha1" &&
61dde8f9 440
63085fab 441 rm -f "refs/remotes/$origin/HEAD"
5be60078 442 git symbolic-ref "refs/remotes/$origin/HEAD" \
63085fab 443 "refs/remotes/$origin/$head_points_at" &&
61dde8f9 444
5be60078
JH
445 git config branch."$head_points_at".remote "$origin" &&
446 git config branch."$head_points_at".merge "refs/heads/$head_points_at"
6762079a
NS
447 ;;
448 '')
449 # Source had detached HEAD pointing nowhere
5be60078 450 git update-ref --no-deref HEAD "$head_sha1" &&
6762079a
NS
451 rm -f "refs/remotes/$origin/HEAD"
452 ;;
e125c1a7
JH
453 esac
454
036a72d8
JH
455 case "$no_checkout" in
456 '')
b0e90897 457 test "z$quiet" = z -a "z$no_progress" = z && v=-v || v=
5be60078 458 git read-tree -m -u $v HEAD HEAD
036a72d8
JH
459 esac
460fi
dfeff66e 461rm -f "$GIT_DIR/CLONE_HEAD" "$GIT_DIR/REMOTE_HEAD"
41ff7a10 462
f803eec5 463trap - 0