4 USAGE
='<fetch-options> <repository> <refspec>...'
7 _x40
='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
8 _x40
="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
22 while case "$#" in 0) break ;; esac
25 -a|
--a|
--ap|
--app|
--appe|
--appen|
--append)
28 --upl|
--uplo|
--uploa|
--upload|
--upload-|
--upload-p|\
29 --upload-pa|
--upload-pac|
--upload-pack)
34 -f|
--f|
--fo|
--for|
--forc|
--force)
37 -t|
--t|
--ta|
--tag|
--tags)
40 -n|
--n|
--no|
--no-|
--no-t|
--no-ta|
--no-tag|
--no-tags)
43 -u|
--u|
--up|
--upd|
--upda|
--updat|
--update|
--update-|
--update-h|\
44 --update-he|
--update-hea|
--update-head|
--update-head-|\
45 --update-head-o|
--update-head-ok)
51 -k|
--k|
--ke|
--kee|
--keep)
66 test -f "$GIT_DIR/branches/origin" ||
67 test -f "$GIT_DIR/remotes/origin" ||
68 die
"Where do you want to fetch from today?"
73 remote
=$
(get_remote_url
"$@")
76 rsync_slurped_objects
=
78 if test "" = "$append"
80 : >"$GIT_DIR/FETCH_HEAD"
83 append_fetch_head
() {
90 t
) not_for_merge_
='not-for-merge' ;;
91 '') not_for_merge_
= ;;
94 # remote-nick is the URL given on the command line (or a shorthand)
95 # remote-name is the $GIT_DIR relative refs/ path we computed
98 # the $note_ variable will be fed to git-fmt-merge-msg for further
100 case "$remote_name_" in
104 note_
="$(expr "$remote_name_" : 'refs/heads/\(.*\)')"
105 note_
="branch '$note_' of " ;;
107 note_
="$(expr "$remote_name_" : 'refs/tags/\(.*\)')"
108 note_
="tag '$note_' of " ;;
110 note_
="$(expr "$remote_name_" : 'refs/remotes/\(.*\)')"
111 note_
="remote branch '$note_' of " ;;
113 note_
="$remote_name of " ;;
115 remote_1_
=$
(expr "z$remote_" : 'z\(.*\)\.git/*$') &&
117 note_
="$note_$remote_"
119 # 2.6.11-tree tag would not be happy to be fed to resolve.
120 if git-cat-file commit
"$head_" >/dev
/null
2>&1
122 headc_
=$
(git-rev-parse
--verify "$head_^0") ||
exit
123 echo "$headc_ $not_for_merge_ $note_" >>"$GIT_DIR/FETCH_HEAD"
124 [ "$verbose" ] && echo >&2 "* committish: $head_"
125 [ "$verbose" ] && echo >&2 " $note_"
127 echo "$head_ not-for-merge $note_" >>"$GIT_DIR/FETCH_HEAD"
128 [ "$verbose" ] && echo >&2 "* non-commit: $head_"
129 [ "$verbose" ] && echo >&2 " $note_"
131 if test "$local_name_" != ""
133 # We are storing the head locally. Make sure that it is
134 # a fast forward (aka "reverse push").
135 fast_forward_local
"$local_name_" "$head_" "$note_"
139 fast_forward_local
() {
140 mkdir
-p "$(dirname "$GIT_DIR/$1")"
143 # Tags need not be pointing at commits so there
144 # is no way to guarantee "fast-forward" anyway.
145 if test -f "$GIT_DIR/$1"
147 if now_
=$
(cat "$GIT_DIR/$1") && test "$now_" = "$2"
149 [ "$verbose" ] && echo >&2 "* $1: same as $3"
151 echo >&2 "* $1: updating with $3"
154 echo >&2 "* $1: storing $3"
156 git-update-ref
"$1" "$2"
159 refs
/heads
/* | refs
/remotes
/*)
160 # $1 is the ref being updated.
161 # $2 is the new value for the ref.
162 local=$
(git-rev-parse
--verify "$1^0" 2>/dev
/null
)
165 # Require fast-forward.
166 mb
=$
(git-merge-base
"$local" "$2") &&
169 echo >&2 "* $1: same as $3"
172 echo >&2 "* $1: fast forward to $3"
173 echo >&2 " from $local to $2"
174 git-update-ref
"$1" "$2" "$local"
180 echo >&2 "* $1: does not fast forward to $3;"
181 case ",$force,$single_force," in
183 echo >&2 " forcing update."
184 git-update-ref
"$1" "$2" "$local"
187 echo >&2 " not updating."
193 echo >&2 "* $1: storing $3"
194 git-update-ref
"$1" "$2"
200 case "$update_head_ok" in
202 orig_head
=$
(git-rev-parse
--verify HEAD
2>/dev
/null
)
206 # If --tags (and later --heads or --all) is specified, then we are
207 # not talking about defaults stored in Pull: line of remotes or
208 # branches file, and just fetch those and refspecs explicitly given.
209 # Otherwise we do what we always did.
211 reflist
=$
(get_remote_refs_for_fetch
"$@")
215 git-ls-remote
$upload_pack --tags "$remote" |
221 if git-check-ref-format
"$name"
223 echo ".${name}:${name}"
225 echo >&2 "warning: tag ${name} ignored"
230 # remote URL plus explicit refspecs; we need to merge them.
231 reflist
="$reflist$LF$taglist"
233 # No explicit refspecs; fetch tags only.
246 # These are relative path from $GIT_DIR, typically starting at refs/
248 if expr "z$ref" : 'z\.' >/dev
/null
251 ref
=$
(expr "z$ref" : 'z\.\(.*\)')
255 if expr "z$ref" : 'z+' >/dev
/null
258 ref
=$
(expr "z$ref" : 'z+\(.*\)')
262 remote_name
=$
(expr "z$ref" : 'z\([^:]*\):')
263 local_name
=$
(expr "z$ref" : 'z[^:]*:\(.*\)')
265 rref
="$rref$LF$remote_name"
267 # There are transports that can fetch only one head at a time...
269 http
://* | https
://*)
270 if [ -n "$GIT_SSL_NO_VERIFY" ]; then
275 head="ref: $remote_name"
276 while (expr "z$head" : "zref:" && expr $depth \
< $max_depth) >/dev
/null
278 remote_name_quoted
=$
(perl
-e '
281 $u =~ s{([^-a-zA-Z0-9/.])}{sprintf"%%%02x",ord($1)}eg;
284 head=$
(curl
-nsfL $curl_extra_args "$remote/$remote_name_quoted")
285 depth
=$
( expr \
( $depth + 1 \
) )
287 expr "z$head" : "z$_x40\$" >/dev
/null ||
288 die
"Failed to fetch $remote_name from $remote"
289 echo >&2 Fetching
"$remote_name from $remote" using http
290 git-http-fetch
-v -a "$head" "$remote/" ||
exit
293 TMP_HEAD
="$GIT_DIR/TMP_HEAD"
294 rsync
-L -q "$remote/$remote_name" "$TMP_HEAD" ||
exit 1
295 head=$
(git-rev-parse
--verify TMP_HEAD
)
297 test "$rsync_slurped_objects" ||
{
298 rsync
-av --ignore-existing --exclude info \
299 "$remote/objects/" "$GIT_OBJECT_DIRECTORY/" ||
exit
301 # Look at objects/info/alternates for rsync -- http will
302 # support it natively and git native ones will do it on
303 # the remote end. Not having that file is not a crime.
304 rsync
-q "$remote/objects/info/alternates" \
305 "$GIT_DIR/TMP_ALT" 2>/dev
/null ||
306 rm -f "$GIT_DIR/TMP_ALT"
307 if test -f "$GIT_DIR/TMP_ALT"
309 resolve_alternates
"$remote" <"$GIT_DIR/TMP_ALT" |
312 case "$alt" in 'bad alternate: '*) die
"$alt";; esac
313 echo >&2 "Getting alternate: $alt"
314 rsync
-av --ignore-existing --exclude info \
315 "$alt" "$GIT_OBJECT_DIRECTORY/" ||
exit
317 rm -f "$GIT_DIR/TMP_ALT"
319 rsync_slurped_objects
=t
323 # We will do git native transport with just one call later.
327 append_fetch_head
"$head" "$remote" \
328 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
333 http
://* | https
://* | rsync
://* )
334 ;; # we are already done.
336 ( : subshell because we muck with IFS
339 git-fetch-pack
$exec $keep --thin "$remote" $rref ||
echo failed
"$remote"
341 while read sha1 remote_name
345 echo >&2 "Fetch failure: $remote"
373 local_name
=$
(expr "z$found" : 'z[^:]*:\(.*\)')
374 append_fetch_head
"$sha1" "$remote" \
375 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
382 fetch_main
"$reflist"
384 # automated tag following
385 case "$no_tags$tags" in
389 # effective only when we are following remote branch
390 # using local tracking branch.
392 git-ls-remote
$upload_pack --tags "$remote" |
393 sed -ne 's|^\([0-9a-f]*\)[ ]\(refs/tags/.*\)^{}$|\1 \2|p' |
396 test -f "$GIT_DIR/$name" && continue
397 git-check-ref-format
"$name" ||
{
398 echo >&2 "warning: tag ${name} ignored"
401 git-cat-file
-t "$sha1" >/dev
/null
2>&1 ||
continue
402 echo >&2 "Auto-following $name"
403 echo ".${name}:${name}"
409 fetch_main
"$taglist" ;;
413 # If the original head was empty (i.e. no "master" yet), or
414 # if we were told not to worry, we do not have to check.
415 case ",$update_head_ok,$orig_head," in
419 curr_head
=$
(git-rev-parse
--verify HEAD
2>/dev
/null
)
420 if test "$curr_head" != "$orig_head"
422 git-update-ref HEAD
"$orig_head"
423 die
"Cannot fetch into the current branch."