]> git.ipfire.org Git - thirdparty/git.git/blame - git-clone.sh
Fix confusing git-update-ref error message
[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
5#
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
e95ab1ed 11usage() {
036a72d8 12 echo >&2 "* git clone [-l [-s]] [-q] [-u <upload-pack>] [-n] <repo> <dir>"
e95ab1ed
JH
13 exit 1
14}
15
ba375acf
LT
16get_repo_base() {
17 (cd "$1" && (cd .git ; pwd)) 2> /dev/null
18}
19
0516de30
JH
20if [ -n "$GIT_SSL_NO_VERIFY" ]; then
21 curl_extra_args="-k"
22fi
23
24http_fetch () {
25 # $1 = Remote, $2 = Local
26 curl -nsf $curl_extra_args "$1" >"$2"
27}
28
29clone_dumb_http () {
30 # $1 - remote, $2 - local
31 cd "$2" &&
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.
37Perhaps git-update-server-info needs to be run there?"
38 exit 1;
39 }
40 while read type name
41 do
42 case "$type" in
43 P) ;;
44 *) continue ;;
45 esac &&
46
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"
52
53 while read sha1 refname
54 do
55 name=`expr "$refname" : 'refs/\(.*\)'` &&
cdb39508
JH
56 case "$name" in
57 *^*) ;;
58 *)
59 git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1
60 esac
0516de30
JH
61 done <"$clone_tmp/refs"
62 rm -fr "$clone_tmp"
63}
64
167a4a33 65quiet=
e95ab1ed 66use_local=no
aae4f42c 67local_shared=no
036a72d8 68no_checkout=
6ec311da 69upload_pack=
e95ab1ed
JH
70while
71 case "$#,$1" in
72 0,*) break ;;
036a72d8 73 *,-n) no_checkout=yes ;;
1cadb5a2 74 *,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) use_local=yes ;;
aae4f42c
JH
75 *,-s|*,--s|*,--sh|*,--sha|*,--shar|*,--share|*,--shared)
76 local_shared=yes ;;
167a4a33 77 *,-q|*,--quiet) quiet=-q ;;
1cadb5a2 78 1,-u|1,--upload-pack) usage ;;
6ec311da
JH
79 *,-u|*,--upload-pack)
80 shift
1cadb5a2 81 upload_pack="--exec=$1" ;;
e95ab1ed
JH
82 *,-*) usage ;;
83 *) break ;;
84 esac
85do
86 shift
87done
88
ba375acf
LT
89# Turn the source into an absolute path if
90# it is local
3f571e0b 91repo="$1"
ba375acf
LT
92local=no
93if base=$(get_repo_base "$repo"); then
94 repo="$base"
95 local=yes
96fi
97
3f571e0b 98dir="$2"
e95ab1ed
JH
99mkdir "$dir" &&
100D=$(
101 (cd "$dir" && git-init-db && pwd)
102) &&
103test -d "$D" || usage
104
105# We do local magic only when the user tells us to.
ba375acf
LT
106case "$local,$use_local" in
107yes,yes)
e95ab1ed 108 ( cd "$repo/objects" ) || {
ab6625e0
JH
109 echo >&2 "-l flag seen but $repo is not local."
110 exit 1
e95ab1ed
JH
111 }
112
aae4f42c
JH
113 case "$local_shared" in
114 no)
115 # See if we can hardlink and drop "l" if not.
116 sample_file=$(cd "$repo" && \
117 find objects -type f -print | sed -e 1q)
e95ab1ed 118
aae4f42c
JH
119 # objects directory should not be empty since we are cloning!
120 test -f "$repo/$sample_file" || exit
e95ab1ed 121
aae4f42c
JH
122 l=
123 if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev/null
124 then
125 l=l
126 fi &&
127 rm -f "$D/.git/objects/sample" &&
128 cd "$repo" &&
3d95bf07 129 find objects -depth -print | cpio -puamd$l "$D/.git/" || exit 1
aae4f42c
JH
130 ;;
131 yes)
132 mkdir -p "$D/.git/objects/info"
0f87f893
JH
133 {
134 test -f "$repo/objects/info/alternates" &&
135 cat "$repo/objects/info/alternates";
136 echo "$repo/objects"
137 } >"$D/.git/objects/info/alternates"
aae4f42c
JH
138 ;;
139 esac
e95ab1ed
JH
140
141 # Make a duplicate of refs and HEAD pointer
142 HEAD=
143 if test -f "$repo/HEAD"
144 then
145 HEAD=HEAD
146 fi
229a7ed7
JH
147 (cd "$repo" && tar cf - refs $HEAD) |
148 (cd "$D/.git" && tar xf -) || exit 1
7558ef89
LT
149 ;;
150*)
1cadb5a2
JH
151 case "$repo" in
152 rsync://*)
4447badc
JH
153 rsync $quiet -av --ignore-existing \
154 --exclude info "$repo/objects/" "$D/.git/objects/" &&
155 rsync $quiet -av --ignore-existing \
156 --exclude info "$repo/refs/" "$D/.git/refs/" || exit
157
158 # Look at objects/info/alternates for rsync -- http will
159 # support it natively and git native ones will do it on the
160 # remote end. Not having that file is not a crime.
89d844d0
JH
161 rsync -q "$repo/objects/info/alternates" \
162 "$D/.git/TMP_ALT" 2>/dev/null ||
4447badc
JH
163 rm -f "$D/.git/TMP_ALT"
164 if test -f "$D/.git/TMP_ALT"
165 then
166 ( cd $D &&
167 . git-parse-remote &&
168 resolve_alternates "$repo" <"./.git/TMP_ALT" ) |
169 while read alt
170 do
171 case "$alt" in 'bad alternate: '*) die "$alt";; esac
172 case "$quiet" in
173 '') echo >&2 "Getting alternate: $alt" ;;
174 esac
175 rsync $quiet -av --ignore-existing \
176 --exclude info "$alt" "$D/.git/objects" || exit
177 done
178 rm -f "$D/.git/TMP_ALT"
179 fi
1cadb5a2
JH
180 ;;
181 http://*)
0516de30 182 clone_dumb_http "$repo" "$D"
1cadb5a2
JH
183 ;;
184 *)
185 cd "$D" && case "$upload_pack" in
186 '') git-clone-pack $quiet "$repo" ;;
187 *) git-clone-pack $quiet "$upload_pack" "$repo" ;;
188 esac
189 ;;
6ec311da 190 esac
7558ef89
LT
191 ;;
192esac
1cadb5a2 193
036a72d8
JH
194cd $D || exit
195
196if test -f ".git/HEAD"
197then
e125c1a7
JH
198 head_points_at=`git-symbolic-ref HEAD`
199 case "$head_points_at" in
200 refs/heads/*)
201 head_points_at=`expr "$head_points_at" : 'refs/heads/\(.*\)'`
202 mkdir -p .git/remotes &&
203 echo >.git/remotes/origin \
204 "URL: $repo
95d117b6
JH
205Pull: $head_points_at:origin" &&
206 cp ".git/refs/heads/$head_points_at" .git/refs/heads/origin &&
207 find .git/refs/heads -type f -print |
208 while read ref
209 do
210 head=`expr "$ref" : '.git/refs/heads/\(.*\)'` &&
211 test "$head_points_at" = "$head" ||
212 test "origin" = "$head" ||
213 echo "Pull: ${head}:${head}"
214 done >>.git/remotes/origin
e125c1a7
JH
215 esac
216
036a72d8
JH
217 case "$no_checkout" in
218 '')
219 git checkout
220 esac
221fi