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"
24 while case "$#" in 0) break ;; esac
27 -a|
--a|
--ap|
--app|
--appe|
--appen|
--append)
30 --upl|
--uplo|
--uploa|
--upload|
--upload-|
--upload-p|\
31 --upload-pa|
--upload-pac|
--upload-pack)
36 -f|
--f|
--fo|
--for|
--forc|
--force)
39 -t|
--t|
--ta|
--tag|
--tags)
42 -n|
--n|
--no|
--no-|
--no-t|
--no-ta|
--no-tag|
--no-tags)
45 -u|
--u|
--up|
--upd|
--upda|
--updat|
--update|
--update-|
--update-h|\
46 --update-he|
--update-hea|
--update-head|
--update-head-|\
47 --update-head-o|
--update-head-ok)
53 -k|
--k|
--ke|
--kee|
--keep)
57 rloga
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
71 origin
=$
(get_default_remote
)
72 test -n "$(get_remote_url ${origin})" ||
73 die
"Where do you want to fetch from today?"
74 set x
$origin ; shift ;;
78 remote
=$
(get_remote_url
"$@")
81 rsync_slurped_objects
=
83 rloga
="$rloga $remote_nick"
84 test "$remote_nick" = "$remote" || rloga
="$rloga $remote"
86 if test "" = "$append"
88 : >"$GIT_DIR/FETCH_HEAD"
91 append_fetch_head
() {
98 t
) not_for_merge_
='not-for-merge' ;;
99 '') not_for_merge_
= ;;
102 # remote-nick is the URL given on the command line (or a shorthand)
103 # remote-name is the $GIT_DIR relative refs/ path we computed
106 # the $note_ variable will be fed to git-fmt-merge-msg for further
108 case "$remote_name_" in
112 note_
="$(expr "$remote_name_" : 'refs/heads/\(.*\)')"
113 note_
="branch '$note_' of " ;;
115 note_
="$(expr "$remote_name_" : 'refs/tags/\(.*\)')"
116 note_
="tag '$note_' of " ;;
118 note_
="$(expr "$remote_name_" : 'refs/remotes/\(.*\)')"
119 note_
="remote branch '$note_' of " ;;
121 note_
="$remote_name of " ;;
123 remote_1_
=$
(expr "z$remote_" : 'z\(.*\)\.git/*$') &&
125 note_
="$note_$remote_"
127 # 2.6.11-tree tag would not be happy to be fed to resolve.
128 if git-cat-file commit
"$head_" >/dev
/null
2>&1
130 headc_
=$
(git-rev-parse
--verify "$head_^0") ||
exit
131 echo "$headc_ $not_for_merge_ $note_" >>"$GIT_DIR/FETCH_HEAD"
133 echo "$head_ not-for-merge $note_" >>"$GIT_DIR/FETCH_HEAD"
136 update_local_ref
"$local_name_" "$head_" "$note_"
139 update_local_ref
() {
140 # If we are storing the head locally make sure that it is
141 # a fast forward (aka "reverse push").
143 label_
=$
(git-cat-file
-t $2)
144 newshort_
=$
(git-rev-parse
--short $2)
145 if test -z "$1" ; then
146 [ "$verbose" ] && echo >&2 "* fetched $3"
147 [ "$verbose" ] && echo >&2 " $label_: $newshort_"
150 oldshort_
=$
(git-rev-parse
--short "$1" 2>/dev
/null
)
151 mkdir
-p "$(dirname "$GIT_DIR/$1")"
154 # Tags need not be pointing at commits so there
155 # is no way to guarantee "fast-forward" anyway.
156 if test -f "$GIT_DIR/$1"
158 if now_
=$
(cat "$GIT_DIR/$1") && test "$now_" = "$2"
160 [ "$verbose" ] && echo >&2 "* $1: same as $3"
161 [ "$verbose" ] && echo >&2 " $label_: $newshort_" ||
:
163 echo >&2 "* $1: updating with $3"
164 echo >&2 " $label_: $newshort_"
165 git-update-ref
-m "$rloga: updating tag" "$1" "$2"
168 echo >&2 "* $1: storing $3"
169 echo >&2 " $label_: $newshort_"
170 git-update-ref
-m "$rloga: storing tag" "$1" "$2"
174 refs
/heads
/* | refs
/remotes
/*)
175 # $1 is the ref being updated.
176 # $2 is the new value for the ref.
177 local=$
(git-rev-parse
--verify "$1^0" 2>/dev
/null
)
180 # Require fast-forward.
181 mb
=$
(git-merge-base
"$local" "$2") &&
184 if test -n "$verbose"
186 echo >&2 "* $1: same as $3"
187 echo >&2 " $label_: $newshort_"
191 echo >&2 "* $1: fast forward to $3"
192 echo >&2 " old..new: $oldshort_..$newshort_"
193 git-update-ref
-m "$rloga: fast-forward" "$1" "$2" "$local"
199 case ",$force,$single_force," in
201 echo >&2 "* $1: forcing update to non-fast forward $3"
202 echo >&2 " old...new: $oldshort_...$newshort_"
203 git-update-ref
-m "$rloga: forced-update" "$1" "$2" "$local"
206 echo >&2 "* $1: not updating to non-fast forward $3"
207 echo >&2 " old...new: $oldshort_...$newshort_"
213 echo >&2 "* $1: storing $3"
214 echo >&2 " $label_: $newshort_"
215 git-update-ref
-m "$rloga: storing head" "$1" "$2"
221 case "$update_head_ok" in
223 orig_head
=$
(git-rev-parse
--verify HEAD
2>/dev
/null
)
227 # If --tags (and later --heads or --all) is specified, then we are
228 # not talking about defaults stored in Pull: line of remotes or
229 # branches file, and just fetch those and refspecs explicitly given.
230 # Otherwise we do what we always did.
232 reflist
=$
(get_remote_refs_for_fetch
"$@")
237 git-ls-remote $upload_pack --tags "$remote" ||
249 if git-check-ref-format "$name"
251 echo ".${name}:${name}"
253 echo >&2 "warning: tag ${name} ignored"
258 # remote URL plus explicit refspecs; we need to merge them.
259 reflist
="$reflist$LF$taglist"
261 # No explicit refspecs; fetch tags only.
275 # These are relative path from $GIT_DIR, typically starting at refs/
277 if expr "z$ref" : 'z\.' >/dev
/null
280 ref
=$
(expr "z$ref" : 'z\.\(.*\)')
284 if expr "z$ref" : 'z+' >/dev
/null
287 ref
=$
(expr "z$ref" : 'z+\(.*\)')
291 remote_name
=$
(expr "z$ref" : 'z\([^:]*\):')
292 local_name
=$
(expr "z$ref" : 'z[^:]*:\(.*\)')
294 rref
="$rref$LF$remote_name"
296 # There are transports that can fetch only one head at a time...
298 http
://* | https
://* |
ftp://*)
299 if [ -n "$GIT_SSL_NO_VERIFY" ]; then
302 if [ -n "$GIT_CURL_FTP_NO_EPSV" -o \
303 "`git-repo-config --bool http.noEPSV`" = true
]; then
304 noepsv_opt
="--disable-epsv"
308 head="ref: $remote_name"
309 while (expr "z$head" : "zref:" && expr $depth \
< $max_depth) >/dev
/null
311 remote_name_quoted
=$
(@@PERL@@
-e '
314 $u =~ s{([^-a-zA-Z0-9/.])}{sprintf"%%%02x",ord($1)}eg;
317 head=$
(curl
-nsfL $curl_extra_args $noepsv_opt "$remote/$remote_name_quoted")
318 depth
=$
( expr \
( $depth + 1 \
) )
320 expr "z$head" : "z$_x40\$" >/dev
/null ||
321 die
"Failed to fetch $remote_name from $remote"
322 echo >&2 Fetching
"$remote_name from $remote" using http
323 git-http-fetch
-v -a "$head" "$remote/" ||
exit
326 TMP_HEAD
="$GIT_DIR/TMP_HEAD"
327 rsync
-L -q "$remote/$remote_name" "$TMP_HEAD" ||
exit 1
328 head=$
(git-rev-parse
--verify TMP_HEAD
)
330 test "$rsync_slurped_objects" ||
{
331 rsync
-av --ignore-existing --exclude info \
332 "$remote/objects/" "$GIT_OBJECT_DIRECTORY/" ||
exit
334 # Look at objects/info/alternates for rsync -- http will
335 # support it natively and git native ones will do it on
336 # the remote end. Not having that file is not a crime.
337 rsync
-q "$remote/objects/info/alternates" \
338 "$GIT_DIR/TMP_ALT" 2>/dev
/null ||
339 rm -f "$GIT_DIR/TMP_ALT"
340 if test -f "$GIT_DIR/TMP_ALT"
342 resolve_alternates
"$remote" <"$GIT_DIR/TMP_ALT" |
345 case "$alt" in 'bad alternate: '*) die
"$alt";; esac
346 echo >&2 "Getting alternate: $alt"
347 rsync
-av --ignore-existing --exclude info \
348 "$alt" "$GIT_OBJECT_DIRECTORY/" ||
exit
350 rm -f "$GIT_DIR/TMP_ALT"
352 rsync_slurped_objects
=t
356 # We will do git native transport with just one call later.
360 append_fetch_head
"$head" "$remote" \
361 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
366 http
://* | https
://* |
ftp://* | rsync
://* )
367 ;; # we are already done.
369 ( : subshell because we muck with IFS
372 git-fetch-pack
$exec $keep "$remote" $rref ||
echo failed
"$remote"
374 while read sha1 remote_name
378 echo >&2 "Fetch failure: $remote"
406 local_name
=$
(expr "z$found" : 'z[^:]*:\(.*\)')
407 append_fetch_head
"$sha1" "$remote" \
408 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
415 fetch_main
"$reflist"
417 # automated tag following
418 case "$no_tags$tags" in
422 # effective only when we are following remote branch
423 # using local tracking branch.
425 git-ls-remote
$upload_pack --tags "$remote" |
426 sed -ne 's|^\([0-9a-f]*\)[ ]\(refs/tags/.*\)^{}$|\1 \2|p' |
429 test -f "$GIT_DIR/$name" && continue
430 git-check-ref-format
"$name" ||
{
431 echo >&2 "warning: tag ${name} ignored"
434 git-cat-file
-t "$sha1" >/dev
/null
2>&1 ||
continue
435 echo >&2 "Auto-following $name"
436 echo ".${name}:${name}"
442 fetch_main
"$taglist" ;;
446 # If the original head was empty (i.e. no "master" yet), or
447 # if we were told not to worry, we do not have to check.
452 curr_head
=$
(git-rev-parse
--verify HEAD
2>/dev
/null
)
453 if test "$curr_head" != "$orig_head"
456 -m "$rloga: Undoing incorrectly fetched HEAD." \
458 die
"Cannot fetch into the current branch."