blob: ee99280a2ab3abdcc340d66661747968a60c84ec [file] [log] [blame]
Linus Torvalds7ef76922005-05-22 11:03:24 -07001#!/bin/sh
2#
freku045@student.liu.se87358b72005-12-13 23:30:31 +01003
4USAGE='<fetch-options> <repository> <refspec>...'
Junio C Hamanoae2b0f12005-11-24 00:12:11 -08005. git-sh-setup
Junio C Hamano215a7ad2005-09-07 17:26:23 -07006. git-parse-remote
Junio C Hamano853a3692005-08-20 02:54:34 -07007_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"
Linus Torvaldsb33e9662005-07-08 10:57:21 -07009
Junio C Hamano221e7432005-10-10 23:22:02 -070010LF='
11'
12IFS="$LF"
13
Shawn Pearce55b78352006-07-10 23:38:35 -040014rloga=fetch
Junio C Hamano03febf92006-01-07 00:48:04 -080015no_tags=
Linus Torvaldsed1aadf2005-09-29 14:35:15 -070016tags=
Junio C Hamano853a3692005-08-20 02:54:34 -070017append=
Junio C Hamanoae2da402005-08-22 21:28:33 -070018force=
Linus Torvalds583122c2005-11-18 08:31:55 -080019verbose=
Junio C Hamanob10ac502005-08-25 18:15:32 -070020update_head_ok=
Michal Ostrowski2c620a12006-01-20 13:05:24 -050021exec=
Michal Ostrowski96b086d2006-01-20 13:38:16 -050022upload_pack=
Junio C Hamanoae2da402005-08-22 21:28:33 -070023while case "$#" in 0) break ;; esac
24do
25 case "$1" in
26 -a|--a|--ap|--app|--appe|--appen|--append)
27 append=t
Junio C Hamanoae2da402005-08-22 21:28:33 -070028 ;;
Junio C Hamano2796a9d2006-01-26 18:11:06 -080029 --upl|--uplo|--uploa|--upload|--upload-|--upload-p|\
30 --upload-pa|--upload-pac|--upload-pack)
Michal Ostrowski2c620a12006-01-20 13:05:24 -050031 shift
32 exec="--exec=$1"
Michal Ostrowski96b086d2006-01-20 13:38:16 -050033 upload_pack="-u $1"
Michal Ostrowski2c620a12006-01-20 13:05:24 -050034 ;;
Junio C Hamanoae2da402005-08-22 21:28:33 -070035 -f|--f|--fo|--for|--forc|--force)
36 force=t
Junio C Hamanob10ac502005-08-25 18:15:32 -070037 ;;
Linus Torvaldsed1aadf2005-09-29 14:35:15 -070038 -t|--t|--ta|--tag|--tags)
39 tags=t
40 ;;
Junio C Hamano03febf92006-01-07 00:48:04 -080041 -n|--n|--no|--no-|--no-t|--no-ta|--no-tag|--no-tags)
42 no_tags=t
43 ;;
Junio C Hamanob10ac502005-08-25 18:15:32 -070044 -u|--u|--up|--upd|--upda|--updat|--update|--update-|--update-h|\
45 --update-he|--update-hea|--update-head|--update-head-|\
46 --update-head-o|--update-head-ok)
47 update_head_ok=t
Junio C Hamanoae2da402005-08-22 21:28:33 -070048 ;;
Linus Torvalds583122c2005-11-18 08:31:55 -080049 -v|--verbose)
50 verbose=Yes
51 ;;
Tom Prince0f76f522006-01-10 18:50:19 -070052 -k|--k|--ke|--kee|--keep)
53 keep=--keep
54 ;;
Shawn Pearce55b78352006-07-10 23:38:35 -040055 --reflog-action=*)
56 rloga=`expr "z$1" : 'z-[^=]*=\(.*\)'`
57 ;;
freku045@student.liu.se87358b72005-12-13 23:30:31 +010058 -*)
59 usage
60 ;;
Junio C Hamanoae2da402005-08-22 21:28:33 -070061 *)
62 break
63 ;;
64 esac
Junio C Hamanob10ac502005-08-25 18:15:32 -070065 shift
Junio C Hamanoae2da402005-08-22 21:28:33 -070066done
67
Junio C Hamano853a3692005-08-20 02:54:34 -070068case "$#" in
690)
Junio C Hamano92c533e2005-08-20 03:00:03 -070070 test -f "$GIT_DIR/branches/origin" ||
71 test -f "$GIT_DIR/remotes/origin" ||
Junio C Hamanob10ac502005-08-25 18:15:32 -070072 die "Where do you want to fetch from today?"
Junio C Hamano92c533e2005-08-20 03:00:03 -070073 set origin ;;
Junio C Hamano853a3692005-08-20 02:54:34 -070074esac
Junio C Hamanoae2da402005-08-22 21:28:33 -070075
Junio C Hamano853a3692005-08-20 02:54:34 -070076remote_nick="$1"
77remote=$(get_remote_url "$@")
78refs=
79rref=
80rsync_slurped_objects=
Linus Torvalds7ef76922005-05-22 11:03:24 -070081
Shawn Pearce55b78352006-07-10 23:38:35 -040082rloga="$rloga $remote_nick"
Eric Wonged0e0782006-07-11 14:06:39 -070083test "$remote_nick" = "$remote" || rloga="$rloga $remote"
Shawn Pearce55b78352006-07-10 23:38:35 -040084
Junio C Hamano853a3692005-08-20 02:54:34 -070085if test "" = "$append"
86then
Santi_Béjardf342972005-10-05 18:58:10 +020087 : >"$GIT_DIR/FETCH_HEAD"
Junio C Hamano853a3692005-08-20 02:54:34 -070088fi
89
90append_fetch_head () {
91 head_="$1"
92 remote_="$2"
93 remote_name_="$3"
94 remote_nick_="$4"
95 local_name_="$5"
Junio C Hamano05dd8e22005-09-25 22:54:23 -070096 case "$6" in
97 t) not_for_merge_='not-for-merge' ;;
98 '') not_for_merge_= ;;
99 esac
Junio C Hamano853a3692005-08-20 02:54:34 -0700100
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700101 # remote-nick is the URL given on the command line (or a shorthand)
102 # remote-name is the $GIT_DIR relative refs/ path we computed
103 # for this refspec.
Eric Wong687b8be2006-03-10 04:19:07 -0800104
105 # the $note_ variable will be fed to git-fmt-merge-msg for further
106 # processing.
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700107 case "$remote_name_" in
108 HEAD)
109 note_= ;;
110 refs/heads/*)
111 note_="$(expr "$remote_name_" : 'refs/heads/\(.*\)')"
Junio C Hamanob91fb512005-09-21 13:59:54 -0700112 note_="branch '$note_' of " ;;
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700113 refs/tags/*)
114 note_="$(expr "$remote_name_" : 'refs/tags/\(.*\)')"
Junio C Hamanob91fb512005-09-21 13:59:54 -0700115 note_="tag '$note_' of " ;;
Eric Wong687b8be2006-03-10 04:19:07 -0800116 refs/remotes/*)
117 note_="$(expr "$remote_name_" : 'refs/remotes/\(.*\)')"
118 note_="remote branch '$note_' of " ;;
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700119 *)
Junio C Hamanob91fb512005-09-21 13:59:54 -0700120 note_="$remote_name of " ;;
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700121 esac
Mark Woodingf327dbc2006-04-13 22:01:24 +0000122 remote_1_=$(expr "z$remote_" : 'z\(.*\)\.git/*$') &&
Junio C Hamanob91fb512005-09-21 13:59:54 -0700123 remote_="$remote_1_"
124 note_="$note_$remote_"
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700125
Junio C Hamano853a3692005-08-20 02:54:34 -0700126 # 2.6.11-tree tag would not be happy to be fed to resolve.
127 if git-cat-file commit "$head_" >/dev/null 2>&1
128 then
Junio C Hamano8572aa82005-08-24 22:46:07 -0700129 headc_=$(git-rev-parse --verify "$head_^0") || exit
Santi_Béjardf342972005-10-05 18:58:10 +0200130 echo "$headc_ $not_for_merge_ $note_" >>"$GIT_DIR/FETCH_HEAD"
Linus Torvalds583122c2005-11-18 08:31:55 -0800131 [ "$verbose" ] && echo >&2 "* committish: $head_"
132 [ "$verbose" ] && echo >&2 " $note_"
Junio C Hamano853a3692005-08-20 02:54:34 -0700133 else
Santi_Béjardf342972005-10-05 18:58:10 +0200134 echo "$head_ not-for-merge $note_" >>"$GIT_DIR/FETCH_HEAD"
Linus Torvalds583122c2005-11-18 08:31:55 -0800135 [ "$verbose" ] && echo >&2 "* non-commit: $head_"
136 [ "$verbose" ] && echo >&2 " $note_"
Junio C Hamano853a3692005-08-20 02:54:34 -0700137 fi
138 if test "$local_name_" != ""
139 then
140 # We are storing the head locally. Make sure that it is
141 # a fast forward (aka "reverse push").
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700142 fast_forward_local "$local_name_" "$head_" "$note_"
Junio C Hamano853a3692005-08-20 02:54:34 -0700143 fi
144}
145
146fast_forward_local () {
Junio C Hamano866ff2f2005-09-10 10:40:47 -0700147 mkdir -p "$(dirname "$GIT_DIR/$1")"
Junio C Hamano853a3692005-08-20 02:54:34 -0700148 case "$1" in
149 refs/tags/*)
150 # Tags need not be pointing at commits so there
151 # is no way to guarantee "fast-forward" anyway.
Junio C Hamanoae2da402005-08-22 21:28:33 -0700152 if test -f "$GIT_DIR/$1"
153 then
Junio C Hamanof8765792005-10-18 18:42:14 -0700154 if now_=$(cat "$GIT_DIR/$1") && test "$now_" = "$2"
155 then
Sergey Vlasov7eae7b92006-07-14 19:06:57 +0400156 [ "$verbose" ] && echo >&2 "* $1: same as $3" ||:
Junio C Hamanof8765792005-10-18 18:42:14 -0700157 else
158 echo >&2 "* $1: updating with $3"
Shawn Pearce55b78352006-07-10 23:38:35 -0400159 git-update-ref -m "$rloga: updating tag" "$1" "$2"
Junio C Hamanof8765792005-10-18 18:42:14 -0700160 fi
Junio C Hamanoae2da402005-08-22 21:28:33 -0700161 else
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700162 echo >&2 "* $1: storing $3"
Shawn Pearce55b78352006-07-10 23:38:35 -0400163 git-update-ref -m "$rloga: storing tag" "$1" "$2"
Junio C Hamanoae2da402005-08-22 21:28:33 -0700164 fi
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700165 ;;
Junio C Hamanoae2da402005-08-22 21:28:33 -0700166
Eric Wong687b8be2006-03-10 04:19:07 -0800167 refs/heads/* | refs/remotes/*)
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700168 # $1 is the ref being updated.
169 # $2 is the new value for the ref.
170 local=$(git-rev-parse --verify "$1^0" 2>/dev/null)
171 if test "$local"
Junio C Hamano853a3692005-08-20 02:54:34 -0700172 then
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700173 # Require fast-forward.
Junio C Hamano853a3692005-08-20 02:54:34 -0700174 mb=$(git-merge-base "$local" "$2") &&
175 case "$2,$mb" in
176 $local,*)
Junio C Hamanoea5aeb02006-06-03 23:44:40 -0700177 if test -n "$verbose"
178 then
179 echo >&2 "* $1: same as $3"
180 fi
Junio C Hamano853a3692005-08-20 02:54:34 -0700181 ;;
182 *,$local)
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700183 echo >&2 "* $1: fast forward to $3"
Lukas Sandström9d7f73d2006-02-25 12:20:13 +0100184 echo >&2 " from $local to $2"
Shawn Pearce55b78352006-07-10 23:38:35 -0400185 git-update-ref -m "$rloga: fast-forward" "$1" "$2" "$local"
Junio C Hamano853a3692005-08-20 02:54:34 -0700186 ;;
187 *)
188 false
189 ;;
190 esac || {
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700191 echo >&2 "* $1: does not fast forward to $3;"
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700192 case ",$force,$single_force," in
193 *,t,*)
Junio C Hamano06ec2b42005-09-02 02:34:13 -0700194 echo >&2 " forcing update."
Shawn Pearce55b78352006-07-10 23:38:35 -0400195 git-update-ref -m "$rloga: forced-update" "$1" "$2" "$local"
Junio C Hamanoae2da402005-08-22 21:28:33 -0700196 ;;
197 *)
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700198 echo >&2 " not updating."
Junio C Hamanoa9698bb2006-03-16 22:04:18 -0800199 exit 1
Junio C Hamanoae2da402005-08-22 21:28:33 -0700200 ;;
201 esac
Junio C Hamano853a3692005-08-20 02:54:34 -0700202 }
203 else
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700204 echo >&2 "* $1: storing $3"
Shawn Pearce55b78352006-07-10 23:38:35 -0400205 git-update-ref -m "$rloga: storing head" "$1" "$2"
Junio C Hamano853a3692005-08-20 02:54:34 -0700206 fi
Linus Torvalds0a623e72005-07-05 11:38:37 -0700207 ;;
Junio C Hamano853a3692005-08-20 02:54:34 -0700208 esac
209}
210
Junio C Hamanob10ac502005-08-25 18:15:32 -0700211case "$update_head_ok" in
212'')
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700213 orig_head=$(git-rev-parse --verify HEAD 2>/dev/null)
Junio C Hamanob10ac502005-08-25 18:15:32 -0700214 ;;
215esac
216
Linus Torvaldsed1aadf2005-09-29 14:35:15 -0700217# If --tags (and later --heads or --all) is specified, then we are
218# not talking about defaults stored in Pull: line of remotes or
219# branches file, and just fetch those and refspecs explicitly given.
220# Otherwise we do what we always did.
221
222reflist=$(get_remote_refs_for_fetch "$@")
223if test "$tags"
224then
Junio C Hamano878ccb22006-05-28 19:24:28 -0700225 taglist=`IFS=" " &&
Michal Ostrowski96b086d2006-01-20 13:38:16 -0500226 git-ls-remote $upload_pack --tags "$remote" |
Junio C Hamano81214e42006-01-05 19:42:12 -0800227 while read sha1 name
228 do
229 case "$name" in
Junio C Hamano878ccb22006-05-28 19:24:28 -0700230 *^*) continue ;;
Junio C Hamano81214e42006-01-05 19:42:12 -0800231 esac
232 if git-check-ref-format "$name"
233 then
234 echo ".${name}:${name}"
235 else
236 echo >&2 "warning: tag ${name} ignored"
237 fi
Junio C Hamano878ccb22006-05-28 19:24:28 -0700238 done`
Linus Torvaldsed1aadf2005-09-29 14:35:15 -0700239 if test "$#" -gt 1
240 then
241 # remote URL plus explicit refspecs; we need to merge them.
Junio C Hamano221e7432005-10-10 23:22:02 -0700242 reflist="$reflist$LF$taglist"
Linus Torvaldsed1aadf2005-09-29 14:35:15 -0700243 else
244 # No explicit refspecs; fetch tags only.
245 reflist=$taglist
246 fi
247fi
248
Junio C Hamano03febf92006-01-07 00:48:04 -0800249fetch_main () {
250 reflist="$1"
251 refs=
Junio C Hamano853a3692005-08-20 02:54:34 -0700252
Junio C Hamano03febf92006-01-07 00:48:04 -0800253 for ref in $reflist
254 do
255 refs="$refs$LF$ref"
Junio C Hamano853a3692005-08-20 02:54:34 -0700256
Junio C Hamano03febf92006-01-07 00:48:04 -0800257 # These are relative path from $GIT_DIR, typically starting at refs/
258 # but may be HEAD
Mark Woodingf327dbc2006-04-13 22:01:24 +0000259 if expr "z$ref" : 'z\.' >/dev/null
Junio C Hamano03febf92006-01-07 00:48:04 -0800260 then
261 not_for_merge=t
Mark Woodingf327dbc2006-04-13 22:01:24 +0000262 ref=$(expr "z$ref" : 'z\.\(.*\)')
Junio C Hamano03febf92006-01-07 00:48:04 -0800263 else
264 not_for_merge=
265 fi
Junio C Hamanodfdcb552006-04-13 19:05:38 -0700266 if expr "z$ref" : 'z+' >/dev/null
Junio C Hamano03febf92006-01-07 00:48:04 -0800267 then
268 single_force=t
Junio C Hamanodfdcb552006-04-13 19:05:38 -0700269 ref=$(expr "z$ref" : 'z+\(.*\)')
Junio C Hamano03febf92006-01-07 00:48:04 -0800270 else
271 single_force=
272 fi
Mark Woodingf327dbc2006-04-13 22:01:24 +0000273 remote_name=$(expr "z$ref" : 'z\([^:]*\):')
274 local_name=$(expr "z$ref" : 'z[^:]*:\(.*\)')
Junio C Hamano853a3692005-08-20 02:54:34 -0700275
Junio C Hamano03febf92006-01-07 00:48:04 -0800276 rref="$rref$LF$remote_name"
Junio C Hamano4447bad2005-09-17 11:56:41 -0700277
Junio C Hamano03febf92006-01-07 00:48:04 -0800278 # There are transports that can fetch only one head at a time...
279 case "$remote" in
280 http://* | https://*)
281 if [ -n "$GIT_SSL_NO_VERIFY" ]; then
282 curl_extra_args="-k"
283 fi
Nick Hengeveld093b0682006-04-26 09:10:01 -0700284 max_depth=5
285 depth=0
286 head="ref: $remote_name"
287 while (expr "z$head" : "zref:" && expr $depth \< $max_depth) >/dev/null
288 do
Michal Rokosd9bffc02006-07-08 17:32:04 +0200289 remote_name_quoted=$(@@PERL@@ -e '
Junio C Hamano03febf92006-01-07 00:48:04 -0800290 my $u = $ARGV[0];
Nick Hengeveld093b0682006-04-26 09:10:01 -0700291 $u =~ s/^ref:\s*//;
Junio C Hamano03febf92006-01-07 00:48:04 -0800292 $u =~ s{([^-a-zA-Z0-9/.])}{sprintf"%%%02x",ord($1)}eg;
293 print "$u";
Nick Hengeveld093b0682006-04-26 09:10:01 -0700294 ' "$head")
295 head=$(curl -nsfL $curl_extra_args "$remote/$remote_name_quoted")
296 depth=$( expr \( $depth + 1 \) )
297 done
Mark Woodingf327dbc2006-04-13 22:01:24 +0000298 expr "z$head" : "z$_x40\$" >/dev/null ||
Nick Hengeveld093b0682006-04-26 09:10:01 -0700299 die "Failed to fetch $remote_name from $remote"
Junio C Hamano03febf92006-01-07 00:48:04 -0800300 echo >&2 Fetching "$remote_name from $remote" using http
301 git-http-fetch -v -a "$head" "$remote/" || exit
302 ;;
303 rsync://*)
304 TMP_HEAD="$GIT_DIR/TMP_HEAD"
305 rsync -L -q "$remote/$remote_name" "$TMP_HEAD" || exit 1
306 head=$(git-rev-parse --verify TMP_HEAD)
307 rm -f "$TMP_HEAD"
308 test "$rsync_slurped_objects" || {
309 rsync -av --ignore-existing --exclude info \
310 "$remote/objects/" "$GIT_OBJECT_DIRECTORY/" || exit
Junio C Hamano853a3692005-08-20 02:54:34 -0700311
Junio C Hamano03febf92006-01-07 00:48:04 -0800312 # Look at objects/info/alternates for rsync -- http will
313 # support it natively and git native ones will do it on
314 # the remote end. Not having that file is not a crime.
315 rsync -q "$remote/objects/info/alternates" \
316 "$GIT_DIR/TMP_ALT" 2>/dev/null ||
317 rm -f "$GIT_DIR/TMP_ALT"
318 if test -f "$GIT_DIR/TMP_ALT"
319 then
320 resolve_alternates "$remote" <"$GIT_DIR/TMP_ALT" |
321 while read alt
322 do
323 case "$alt" in 'bad alternate: '*) die "$alt";; esac
324 echo >&2 "Getting alternate: $alt"
325 rsync -av --ignore-existing --exclude info \
326 "$alt" "$GIT_OBJECT_DIRECTORY/" || exit
327 done
328 rm -f "$GIT_DIR/TMP_ALT"
329 fi
330 rsync_slurped_objects=t
331 }
332 ;;
333 *)
334 # We will do git native transport with just one call later.
335 continue ;;
336 esac
Junio C Hamano853a3692005-08-20 02:54:34 -0700337
Junio C Hamano03febf92006-01-07 00:48:04 -0800338 append_fetch_head "$head" "$remote" \
339 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
Junio C Hamano853a3692005-08-20 02:54:34 -0700340
Junio C Hamano03febf92006-01-07 00:48:04 -0800341 done
342
343 case "$remote" in
344 http://* | https://* | rsync://* )
345 ;; # we are already done.
346 *)
347 ( : subshell because we muck with IFS
348 IFS=" $LF"
349 (
Junio C Hamanob19696c2006-02-20 00:38:39 -0800350 git-fetch-pack $exec $keep --thin "$remote" $rref || echo failed "$remote"
Junio C Hamano03febf92006-01-07 00:48:04 -0800351 ) |
352 while read sha1 remote_name
353 do
354 case "$sha1" in
355 failed)
356 echo >&2 "Fetch failure: $remote"
357 exit 1 ;;
358 esac
359 found=
360 single_force=
361 for ref in $refs
362 do
363 case "$ref" in
364 +$remote_name:*)
365 single_force=t
366 not_for_merge=
367 found="$ref"
368 break ;;
369 .+$remote_name:*)
370 single_force=t
371 not_for_merge=t
372 found="$ref"
373 break ;;
374 .$remote_name:*)
375 not_for_merge=t
376 found="$ref"
377 break ;;
378 $remote_name:*)
379 not_for_merge=
380 found="$ref"
381 break ;;
382 esac
383 done
Mark Woodingf327dbc2006-04-13 22:01:24 +0000384 local_name=$(expr "z$found" : 'z[^:]*:\(.*\)')
Junio C Hamano03febf92006-01-07 00:48:04 -0800385 append_fetch_head "$sha1" "$remote" \
386 "$remote_name" "$remote_nick" "$local_name" "$not_for_merge"
387 done
388 ) || exit ;;
389 esac
390
391}
392
393fetch_main "$reflist"
394
395# automated tag following
396case "$no_tags$tags" in
397'')
Junio C Hamano6dc78e62006-02-22 13:10:37 -0800398 case "$reflist" in
399 *:refs/*)
400 # effective only when we are following remote branch
401 # using local tracking branch.
402 taglist=$(IFS=" " &&
403 git-ls-remote $upload_pack --tags "$remote" |
404 sed -ne 's|^\([0-9a-f]*\)[ ]\(refs/tags/.*\)^{}$|\1 \2|p' |
405 while read sha1 name
406 do
407 test -f "$GIT_DIR/$name" && continue
408 git-check-ref-format "$name" || {
409 echo >&2 "warning: tag ${name} ignored"
410 continue
411 }
412 git-cat-file -t "$sha1" >/dev/null 2>&1 || continue
413 echo >&2 "Auto-following $name"
414 echo ".${name}:${name}"
415 done)
416 esac
Junio C Hamano03febf92006-01-07 00:48:04 -0800417 case "$taglist" in
418 '') ;;
419 ?*)
420 fetch_main "$taglist" ;;
421 esac
Junio C Hamano853a3692005-08-20 02:54:34 -0700422esac
Junio C Hamanob10ac502005-08-25 18:15:32 -0700423
424# If the original head was empty (i.e. no "master" yet), or
425# if we were told not to worry, we do not have to check.
426case ",$update_head_ok,$orig_head," in
427*,, | t,* )
428 ;;
429*)
Junio C Hamanobf7960e2005-09-27 18:14:27 -0700430 curr_head=$(git-rev-parse --verify HEAD 2>/dev/null)
Junio C Hamanob10ac502005-08-25 18:15:32 -0700431 if test "$curr_head" != "$orig_head"
432 then
Shawn Pearce55b78352006-07-10 23:38:35 -0400433 git-update-ref \
434 -m "$rloga: Undoing incorrectly fetched HEAD." \
435 HEAD "$orig_head"
Junio C Hamanob10ac502005-08-25 18:15:32 -0700436 die "Cannot fetch into the current branch."
437 fi
438 ;;
439esac