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 git-clone [options] [--] <repo> [<dir>]
14 n,no-checkout don't create a checkout
15 bare create a bare repository
16 naked create a bare repository
17 l,local to clone from a local repository
18 no-hardlinks don't use local hardlinks, always copy
19 s,shared setup as a shared repository
20 template= path to the template directory
22 reference= reference repository
23 o,origin= use <name> instead of 'origin' to track upstream
24 u,upload-pack= path to git-upload-pack on the remote
25 depth= create a shallow clone of that depth
27 use-separate-remote compatibility, do not use
28 no-separate-remote compatibility, do not use"
35 # Fix some commands on Windows
38 # Windows has its own (incompatible) find
42 # need an emulation of cpio
47 *) die
"cpio $1 unexpected";;
49 # copy only files and empty directories
53 # here we assume that directories are listed after
54 # its files (aka 'find -depth'), hence, a directory
55 # that is not empty will be a leading sub-string
56 # of the preceding entry
66 xargs --no-run-if-empty \
67 cp $cp_arg --target-directory="$2" --parents
69 # pwd must return a path with a drive letter
71 # there are no symlinks to resolve: /bin/pwd is not needed
89 eval "$(echo "$OPTIONS_SPEC" | git rev-parse --parseopt -- "$@
" || echo exit $?)"
94 cd "$1" ||
cd "$1.git" &&
102 if [ -n "$GIT_SSL_NO_VERIFY" -o \
103 "`git config --bool http.sslVerify`" = false
]; then
108 # $1 = Remote, $2 = Local
109 curl
-nsfL $curl_extra_args "$1" >"$2"
111 case $curl_exit_status in
113 *) return $curl_exit_status ;;
118 # $1 - remote, $2 - local
120 clone_tmp
="$GIT_DIR/clone-tmp" &&
121 mkdir
-p "$clone_tmp" ||
exit 1
122 if [ -n "$GIT_CURL_FTP_NO_EPSV" -o \
123 "`git config --bool http.noEPSV`" = true
]; then
124 curl_extra_args
="${curl_extra_args} --disable-epsv"
126 http_fetch
"$1/info/refs" "$clone_tmp/refs" ||
127 die
"Cannot get remote repository information.
128 Perhaps git-update-server-info needs to be run there?"
129 test "z$quiet" = z
&& v
=-v || v
=
130 while read sha1 refname
132 name
=`expr "z$refname" : 'zrefs/\(.*\)'` &&
136 case "$bare,$name" in
137 yes,* |
,heads
/* |
,tags
/*) ;;
140 if test -n "$use_separate_remote" &&
141 branch_name
=`expr "z$name" : 'zheads/\(.*\)'`
143 tname
="remotes/$origin/$branch_name"
147 git-http-fetch
$v -a -w "$tname" "$sha1" "$1" ||
exit 1
148 done <"$clone_tmp/refs"
150 http_fetch
"$1/HEAD" "$GIT_DIR/REMOTE_HEAD" ||
151 rm -f "$GIT_DIR/REMOTE_HEAD"
152 if test -f "$GIT_DIR/REMOTE_HEAD"; then
153 head_sha1
=`cat "$GIT_DIR/REMOTE_HEAD"`
158 git-http-fetch
$v -a "$head_sha1" "$1" ||
159 rm -f "$GIT_DIR/REMOTE_HEAD"
167 use_local_hardlink
=yes
176 use_separate_remote
=t
179 local_explicitly_asked_for
=
180 test -t 1 || no_progress
=--no-progress
190 local_explicitly_asked_for
=yes
191 use_local_hardlink
=yes
194 use_local_hardlink
=no
;;
198 shift; template
="--template=$1" ;;
201 --use-separate-remote|
--no-separate-remote)
202 die
"clones are always made with separate-remote layout" ;;
204 shift; reference
="$1" ;;
211 die
"'$1' is not suitable for an origin name"
213 git check-ref-format
"heads/$1" ||
214 die
"'$1' is not suitable for a branch name"
215 test -z "$origin_override" ||
216 die
"Do not give more than one --origin options."
222 upload_pack
="--upload-pack=$1" ;;
225 depth
="--depth=$1" ;;
237 die
'you must specify a repository to clone.'
239 # --bare implies --no-checkout and --no-separate-remote
240 if test yes = "$bare"
242 if test yes = "$origin_override"
244 die
'--bare and --origin $origin options are incompatible.'
255 # Turn the source into an absolute path if
257 if base
=$
(get_repo_base
"$repo"); then
265 case "$repo" in /*) ;; *) repo
="$PWD/$repo" ;; esac
268 # Decide the directory name of the new repository
273 # Derive one from the repository name
274 # Try using "humanish" part of source repo if user didn't specify one
277 # Cloning from a bundle
278 dir
=$
(echo "$repo" |
sed -e 's|/*\.bundle$||' -e 's|.*/||g')
281 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
285 [ -e "$dir" ] && die
"destination directory '$dir' already exists."
286 [ yes = "$bare" ] && unset GIT_WORK_TREE
287 [ -n "$GIT_WORK_TREE" ] && [ -e "$GIT_WORK_TREE" ] &&
288 die
"working tree '$GIT_WORK_TREE' already exists."
293 test -z "$D" && rm -rf "$dir"
294 test -z "$W" && test -n "$GIT_WORK_TREE" && rm -rf "$GIT_WORK_TREE"
296 test -n "$D" && rm -rf "$D"
297 test -n "$W" && rm -rf "$W"
301 mkdir
-p "$dir" && D
=$
(cd "$dir" && pwd) || usage
302 test -n "$GIT_WORK_TREE" && mkdir
-p "$GIT_WORK_TREE" &&
303 W
=$
(cd "$GIT_WORK_TREE" && pwd) && GIT_WORK_TREE
="$W" && export GIT_WORK_TREE
304 if test yes = "$bare" ||
test -n "$GIT_WORK_TREE"; then
310 GIT_CONFIG
="$GIT_DIR/config" git-init
$quiet ${template+"$template"} || usage
314 GIT_CONFIG
="$GIT_DIR/config" git config core.bare true
317 if test -n "$reference"
320 if test -d "$reference"
322 if test -d "$reference/.git/objects"
324 ref_git
="$reference/.git"
325 elif test -d "$reference/objects"
330 if test -n "$ref_git"
332 ref_git
=$
(cd "$ref_git" && pwd)
333 echo "$ref_git/objects" >"$GIT_DIR/objects/info/alternates"
335 GIT_DIR
="$ref_git" git for-each-ref \
336 --format='%(objectname) %(*objectname)'
341 git update-ref
"refs/reference-tmp/$a" "$a"
343 git update-ref
"refs/reference-tmp/$b" "$b"
346 die
"reference repository '$reference' is not a local directory."
350 rm -f "$GIT_DIR/CLONE_HEAD"
352 # We do local magic only when the user tells us to.
355 ( cd "$repo/objects" ) ||
356 die
"cannot chdir to local '$repo/objects'."
358 if test "$local_shared" = yes
360 mkdir
-p "$GIT_DIR/objects/info"
361 echo "$repo/objects" >>"$GIT_DIR/objects/info/alternates"
364 if test "$use_local_hardlink" = yes
366 # See if we can hardlink and drop "l" if not.
367 sample_file
=$
(cd "$repo" && \
368 find objects
-type f
-print |
sed -e 1q
)
369 # objects directory should not be empty because
371 test -f "$repo/$sample_file" ||
372 die
"fatal: cannot clone empty repository"
373 if ln "$repo/$sample_file" "$GIT_DIR/objects/sample" 2>/dev
/null
375 rm -f "$GIT_DIR/objects/sample"
377 elif test -n "$local_explicitly_asked_for"
379 echo >&2 "Warning: -l asked but cannot hardlink to $repo"
383 find objects
-depth -print |
cpio -pumd$l "$GIT_DIR/" ||
exit 1
385 git-ls-remote
"$repo" >"$GIT_DIR/CLONE_HEAD" ||
exit 1
392 *) die
"shallow over rsync not supported" ;;
394 rsync
$quiet -av --ignore-existing \
395 --exclude info
"$repo/objects/" "$GIT_DIR/objects/" ||
397 # Look at objects/info/alternates for rsync -- http will
398 # support it natively and git native ones will do it on the
399 # remote end. Not having that file is not a crime.
400 rsync
-q "$repo/objects/info/alternates" \
401 "$GIT_DIR/TMP_ALT" 2>/dev
/null ||
402 rm -f "$GIT_DIR/TMP_ALT"
403 if test -f "$GIT_DIR/TMP_ALT"
406 . git-parse-remote
&&
407 resolve_alternates
"$repo" <"$GIT_DIR/TMP_ALT" ) |
410 case "$alt" in 'bad alternate: '*) die
"$alt";; esac
412 '') echo >&2 "Getting alternate: $alt" ;;
414 rsync
$quiet -av --ignore-existing \
415 --exclude info
"$alt" "$GIT_DIR/objects" ||
exit
417 rm -f "$GIT_DIR/TMP_ALT"
419 git-ls-remote
"$repo" >"$GIT_DIR/CLONE_HEAD" ||
exit 1
421 https
://*|http
://*|
ftp://*)
424 *) die
"shallow over http or ftp not supported" ;;
426 if test -z "@@NO_CURL@@"
428 clone_dumb_http
"$repo" "$D"
430 die
"http transport not supported, rebuild Git with curl support"
434 if [ -f "$repo" ] ; then
435 git bundle unbundle
"$repo" > "$GIT_DIR/CLONE_HEAD" ||
436 die
"unbundle from '$repo' failed."
438 case "$upload_pack" in
439 '') git-fetch-pack
--all -k $quiet $depth $no_progress "$repo";;
440 *) git-fetch-pack
--all -k \
441 $quiet "$upload_pack" $depth $no_progress "$repo" ;;
442 esac >"$GIT_DIR/CLONE_HEAD" ||
443 die
"fetch-pack from '$repo' failed."
449 test -d "$GIT_DIR/refs/reference-tmp" && rm -fr "$GIT_DIR/refs/reference-tmp"
451 if test -f "$GIT_DIR/CLONE_HEAD"
453 # Read git-fetch-pack -k output and store the remote branches.
454 if [ -n "$use_separate_remote" ]
456 branch_top
="remotes/$origin"
467 destname
="REMOTE_HEAD" ;;
469 destname
="refs/$branch_top/${name#refs/heads/}" ;;
471 destname
="refs/$tag_top/${name#refs/tags/}" ;;
475 git update-ref
-m "clone: from $repo" "$destname" "$sha1" ""
476 done < "$GIT_DIR/CLONE_HEAD"
479 if test -n "$W"; then
487 # a non-bare repository is always in separate-remote layout
488 remote_top
="refs/remotes/$origin"
490 test ! -r "$GIT_DIR/REMOTE_HEAD" || head_sha1
=`cat "$GIT_DIR/REMOTE_HEAD"`
493 # Uh-oh, the remote told us (http transport done against
494 # new style repository with a symref HEAD).
495 # Ideally we should skip the guesswork but for now
496 # opt for minimum change.
497 head_sha1
=`expr "z$head_sha1" : 'zref: refs/heads/\(.*\)'`
498 head_sha1
=`cat "$GIT_DIR/$remote_top/$head_sha1"`
502 # The name under $remote_top the remote HEAD seems to point at.
505 test -f "$GIT_DIR/$remote_top/master" && echo "master"
506 cd "$GIT_DIR/$remote_top" &&
507 find .
-type f
-print |
sed -e 's/^\.\///'
512 test t
= $done && continue
513 branch_tip
=`cat "$GIT_DIR/$remote_top/$name"`
514 if test "$head_sha1" = "$branch_tip"
524 git config remote.
"$origin".url
"$repo" &&
526 # Set up the mappings to track the remote branches.
527 git config remote.
"$origin".fetch \
528 "+refs/heads/*:$remote_top/*" '^$' &&
530 # Write out remote.$origin config, and update our "$head_points_at".
531 case "$head_points_at" in
533 # Local default branch
534 git symbolic-ref HEAD
"refs/heads/$head_points_at" &&
536 # Tracking branch for the primary branch at the remote.
537 git update-ref HEAD
"$head_sha1" &&
539 rm -f "refs/remotes/$origin/HEAD"
540 git symbolic-ref
"refs/remotes/$origin/HEAD" \
541 "refs/remotes/$origin/$head_points_at" &&
543 git config branch.
"$head_points_at".remote
"$origin" &&
544 git config branch.
"$head_points_at".merge
"refs/heads/$head_points_at"
547 if test -z "$head_sha1"
549 # Source had nonexistent ref in HEAD
550 echo >&2 "Warning: Remote HEAD refers to nonexistent ref, unable to checkout."
553 # Source had detached HEAD pointing nowhere
554 git update-ref
--no-deref HEAD
"$head_sha1" &&
555 rm -f "refs/remotes/$origin/HEAD"
560 case "$no_checkout" in
562 test "z$quiet" = z
-a "z$no_progress" = z
&& v
=-v || v
=
563 git read-tree
-m -u $v HEAD HEAD
566 rm -f "$GIT_DIR/CLONE_HEAD" "$GIT_DIR/REMOTE_HEAD"