]> git.ipfire.org Git - thirdparty/git.git/blame - git-fetch.sh
Merge branches 'jc/apply', 'lt/ls-tree', 'lt/bisect' and 'lt/merge'
[thirdparty/git.git] / git-fetch.sh
CommitLineData
7ef76925
LT
1#!/bin/sh
2#
ae2b0f15 3. git-sh-setup
215a7ad1 4. git-parse-remote
853a3697
JH
5_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
6_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
7
221e743c
JH
8LF='
9'
10IFS="$LF"
11
ed1aadf1 12tags=
853a3697 13append=
ae2da406 14force=
583122cd 15verbose=
b10ac50f 16update_head_ok=
ae2da406
JH
17while case "$#" in 0) break ;; esac
18do
19 case "$1" in
20 -a|--a|--ap|--app|--appe|--appen|--append)
21 append=t
ae2da406
JH
22 ;;
23 -f|--f|--fo|--for|--forc|--force)
24 force=t
b10ac50f 25 ;;
ed1aadf1
LT
26 -t|--t|--ta|--tag|--tags)
27 tags=t
28 ;;
b10ac50f
JH
29 -u|--u|--up|--upd|--upda|--updat|--update|--update-|--update-h|\
30 --update-he|--update-hea|--update-head|--update-head-|\
31 --update-head-o|--update-head-ok)
32 update_head_ok=t
ae2da406 33 ;;
583122cd
LT
34 -v|--verbose)
35 verbose=Yes
36 ;;
ae2da406
JH
37 *)
38 break
39 ;;
40 esac
b10ac50f 41 shift
ae2da406
JH
42done
43
853a3697
JH
44case "$#" in
450)
92c533ef
JH
46 test -f "$GIT_DIR/branches/origin" ||
47 test -f "$GIT_DIR/remotes/origin" ||
b10ac50f 48 die "Where do you want to fetch from today?"
92c533ef 49 set origin ;;
853a3697 50esac
ae2da406 51
853a3697
JH
52remote_nick="$1"
53remote=$(get_remote_url "$@")
54refs=
55rref=
56rsync_slurped_objects=
57
58if test "" = "$append"
59then
df34297a 60 : >"$GIT_DIR/FETCH_HEAD"
853a3697
JH
61fi
62
63append_fetch_head () {
64 head_="$1"
65 remote_="$2"
66 remote_name_="$3"
67 remote_nick_="$4"
68 local_name_="$5"
05dd8e2e
JH
69 case "$6" in
70 t) not_for_merge_='not-for-merge' ;;
71 '') not_for_merge_= ;;
72 esac
853a3697 73
06ec2b4b
JH
74 # remote-nick is the URL given on the command line (or a shorthand)
75 # remote-name is the $GIT_DIR relative refs/ path we computed
76 # for this refspec.
77 case "$remote_name_" in
78 HEAD)
79 note_= ;;
80 refs/heads/*)
81 note_="$(expr "$remote_name_" : 'refs/heads/\(.*\)')"
b91fb518 82 note_="branch '$note_' of " ;;
06ec2b4b
JH
83 refs/tags/*)
84 note_="$(expr "$remote_name_" : 'refs/tags/\(.*\)')"
b91fb518 85 note_="tag '$note_' of " ;;
06ec2b4b 86 *)
b91fb518 87 note_="$remote_name of " ;;
06ec2b4b 88 esac
b91fb518
JH
89 remote_1_=$(expr "$remote_" : '\(.*\)\.git/*$') &&
90 remote_="$remote_1_"
91 note_="$note_$remote_"
06ec2b4b 92
853a3697
JH
93 # 2.6.11-tree tag would not be happy to be fed to resolve.
94 if git-cat-file commit "$head_" >/dev/null 2>&1
95 then
8572aa85 96 headc_=$(git-rev-parse --verify "$head_^0") || exit
df34297a 97 echo "$headc_ $not_for_merge_ $note_" >>"$GIT_DIR/FETCH_HEAD"
583122cd
LT
98 [ "$verbose" ] && echo >&2 "* committish: $head_"
99 [ "$verbose" ] && echo >&2 " $note_"
853a3697 100 else
df34297a 101 echo "$head_ not-for-merge $note_" >>"$GIT_DIR/FETCH_HEAD"
583122cd
LT
102 [ "$verbose" ] && echo >&2 "* non-commit: $head_"
103 [ "$verbose" ] && echo >&2 " $note_"
853a3697
JH
104 fi
105 if test "$local_name_" != ""
106 then
107 # We are storing the head locally. Make sure that it is
108 # a fast forward (aka "reverse push").
06ec2b4b 109 fast_forward_local "$local_name_" "$head_" "$note_"
853a3697
JH
110 fi
111}
112
113fast_forward_local () {
866ff2f7 114 mkdir -p "$(dirname "$GIT_DIR/$1")"
853a3697
JH
115 case "$1" in
116 refs/tags/*)
117 # Tags need not be pointing at commits so there
118 # is no way to guarantee "fast-forward" anyway.
ae2da406
JH
119 if test -f "$GIT_DIR/$1"
120 then
f8765797
JH
121 if now_=$(cat "$GIT_DIR/$1") && test "$now_" = "$2"
122 then
583122cd 123 [ "$verbose" ] && echo >&2 "* $1: same as $3"
f8765797
JH
124 else
125 echo >&2 "* $1: updating with $3"
126 fi
ae2da406 127 else
06ec2b4b 128 echo >&2 "* $1: storing $3"
ae2da406 129 fi
bf7960eb
JH
130 git-update-ref "$1" "$2"
131 ;;
ae2da406 132
853a3697 133 refs/heads/*)
bf7960eb
JH
134 # $1 is the ref being updated.
135 # $2 is the new value for the ref.
136 local=$(git-rev-parse --verify "$1^0" 2>/dev/null)
137 if test "$local"
33b83034 138 then
bf7960eb 139 # Require fast-forward.
853a3697
JH
140 mb=$(git-merge-base "$local" "$2") &&
141 case "$2,$mb" in
142 $local,*)
06ec2b4b 143 echo >&2 "* $1: same as $3"
853a3697
JH
144 ;;
145 *,$local)
06ec2b4b 146 echo >&2 "* $1: fast forward to $3"
bf7960eb 147 git-update-ref "$1" "$2" "$local"
853a3697
JH
148 ;;
149 *)
150 false
151 ;;
152 esac || {
06ec2b4b 153 echo >&2 "* $1: does not fast forward to $3;"
bf7960eb
JH
154 case ",$force,$single_force," in
155 *,t,*)
06ec2b4b 156 echo >&2 " forcing update."
bf7960eb 157 git-update-ref "$1" "$2" "$local"
ae2da406
JH
158 ;;
159 *)
bf7960eb 160 echo >&2 " not updating."
ae2da406
JH
161 ;;
162 esac
853a3697
JH
163 }
164 else
bf7960eb
JH
165 echo >&2 "* $1: storing $3"
166 git-update-ref "$1" "$2"
33b83034 167 fi
0a623e7c 168 ;;
853a3697
JH
169 esac
170}
171
b10ac50f
JH
172case "$update_head_ok" in
173'')
bf7960eb 174 orig_head=$(git-rev-parse --verify HEAD 2>/dev/null)
b10ac50f
JH
175 ;;
176esac
177
ed1aadf1
LT
178# If --tags (and later --heads or --all) is specified, then we are
179# not talking about defaults stored in Pull: line of remotes or
180# branches file, and just fetch those and refspecs explicitly given.
181# Otherwise we do what we always did.
182
183reflist=$(get_remote_refs_for_fetch "$@")
184if test "$tags"
185then
221e743c
JH
186 taglist=$(git-ls-remote --tags "$remote" |
187 sed -e '
cdb39508 188 /\^/d
221e743c
JH
189 s/^[^ ]* //
190 s/.*/&:&/')
ed1aadf1
LT
191 if test "$#" -gt 1
192 then
193 # remote URL plus explicit refspecs; we need to merge them.
221e743c 194 reflist="$reflist$LF$taglist"
ed1aadf1
LT
195 else
196 # No explicit refspecs; fetch tags only.
197 reflist=$taglist
198 fi
199fi
200
201for ref in $reflist
853a3697 202do
221e743c 203 refs="$refs$LF$ref"
f170e4b3 204
853a3697
JH
205 # These are relative path from $GIT_DIR, typically starting at refs/
206 # but may be HEAD
05dd8e2e
JH
207 if expr "$ref" : '\.' >/dev/null
208 then
209 not_for_merge=t
210 ref=$(expr "$ref" : '\.\(.*\)')
211 else
212 not_for_merge=
213 fi
efe9bf0f
JH
214 if expr "$ref" : '\+' >/dev/null
215 then
216 single_force=t
217 ref=$(expr "$ref" : '\+\(.*\)')
218 else
219 single_force=
220 fi
853a3697
JH
221 remote_name=$(expr "$ref" : '\([^:]*\):')
222 local_name=$(expr "$ref" : '[^:]*:\(.*\)')
f170e4b3 223
221e743c 224 rref="$rref$LF$remote_name"
853a3697
JH
225
226 # There are transports that can fetch only one head at a time...
227 case "$remote" in
228 http://* | https://*)
229 if [ -n "$GIT_SSL_NO_VERIFY" ]; then
230 curl_extra_args="-k"
231 fi
221e743c
JH
232 remote_name_quoted=$(perl -e '
233 my $u = $ARGV[0];
234 $u =~ s{([^-a-zA-Z0-9/.])}{sprintf"%%%02x",ord($1)}eg;
235 print "$u";
236 ' "$remote_name")
66c9ec25 237 head=$(curl -nsfL $curl_extra_args "$remote/$remote_name_quoted") &&
853a3697 238 expr "$head" : "$_x40\$" >/dev/null ||
b10ac50f 239 die "Failed to fetch $remote_name from $remote"
0b7a9fc9 240 echo >&2 Fetching "$remote_name from $remote" using http
215a7ad1 241 git-http-fetch -v -a "$head" "$remote/" || exit
60ea0fdd 242 ;;
853a3697
JH
243 rsync://*)
244 TMP_HEAD="$GIT_DIR/TMP_HEAD"
4447badc 245 rsync -L -q "$remote/$remote_name" "$TMP_HEAD" || exit 1
bf7960eb 246 head=$(git-rev-parse --verify TMP_HEAD)
853a3697
JH
247 rm -f "$TMP_HEAD"
248 test "$rsync_slurped_objects" || {
4447badc
JH
249 rsync -av --ignore-existing --exclude info \
250 "$remote/objects/" "$GIT_OBJECT_DIRECTORY/" || exit
251
252 # Look at objects/info/alternates for rsync -- http will
253 # support it natively and git native ones will do it on the remote
254 # end. Not having that file is not a crime.
89d844d0
JH
255 rsync -q "$remote/objects/info/alternates" \
256 "$GIT_DIR/TMP_ALT" 2>/dev/null ||
257 rm -f "$GIT_DIR/TMP_ALT"
4447badc
JH
258 if test -f "$GIT_DIR/TMP_ALT"
259 then
260 resolve_alternates "$remote" <"$GIT_DIR/TMP_ALT" |
261 while read alt
262 do
263 case "$alt" in 'bad alternate: '*) die "$alt";; esac
264 echo >&2 "Getting alternate: $alt"
265 rsync -av --ignore-existing --exclude info \
266 "$alt" "$GIT_OBJECT_DIRECTORY/" || exit
267 done
268 rm -f "$GIT_DIR/TMP_ALT"
269 fi
853a3697
JH
270 rsync_slurped_objects=t
271 }
272 ;;
273 *)
274 # We will do git native transport with just one call later.
275 continue ;;
276 esac
277
05dd8e2e
JH
278 append_fetch_head "$head" "$remote" \
279 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
f170e4b3 280
853a3697
JH
281done
282
283case "$remote" in
284http://* | https://* | rsync://* )
285 ;; # we are already done.
286*)
221e743c 287 IFS=" $LF"
22c67ca8
JH
288 (
289 git-fetch-pack "$remote" $rref || echo failed "$remote"
290 ) |
853a3697
JH
291 while read sha1 remote_name
292 do
22c67ca8
JH
293 case "$sha1" in
294 failed)
295 echo >&2 "Fetch failure: $remote"
296 exit 1 ;;
297 esac
853a3697 298 found=
efe9bf0f 299 single_force=
853a3697
JH
300 for ref in $refs
301 do
302 case "$ref" in
efe9bf0f
JH
303 +$remote_name:*)
304 single_force=t
05dd8e2e
JH
305 not_for_merge=
306 found="$ref"
307 break ;;
308 .+$remote_name:*)
309 single_force=t
310 not_for_merge=t
311 found="$ref"
312 break ;;
313 .$remote_name:*)
314 not_for_merge=t
efe9bf0f
JH
315 found="$ref"
316 break ;;
853a3697 317 $remote_name:*)
05dd8e2e 318 not_for_merge=
853a3697
JH
319 found="$ref"
320 break ;;
321 esac
322 done
853a3697 323 local_name=$(expr "$found" : '[^:]*:\(.*\)')
05dd8e2e
JH
324 append_fetch_head "$sha1" "$remote" \
325 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
22c67ca8 326 done || exit
853a3697
JH
327 ;;
328esac
b10ac50f
JH
329
330# If the original head was empty (i.e. no "master" yet), or
331# if we were told not to worry, we do not have to check.
332case ",$update_head_ok,$orig_head," in
333*,, | t,* )
334 ;;
335*)
bf7960eb 336 curr_head=$(git-rev-parse --verify HEAD 2>/dev/null)
b10ac50f
JH
337 if test "$curr_head" != "$orig_head"
338 then
bf7960eb 339 git-update-ref HEAD "$orig_head"
b10ac50f
JH
340 die "Cannot fetch into the current branch."
341 fi
342 ;;
343esac