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